-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.assembly.xml
More file actions
77 lines (74 loc) · 2.34 KB
/
client.assembly.xml
File metadata and controls
77 lines (74 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<assembly>
<id>binary</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<unpack>true</unpack>
<useTransitiveDependencies>true</useTransitiveDependencies>
<useTransitiveFiltering>true</useTransitiveFiltering>
<useProjectArtifact>true</useProjectArtifact>
<outputDirectory>/</outputDirectory>
<includes>
<include>org.bestgrid.virtscreen:grisu-virtscreen</include>
</includes>
<excludes>
<exclude>junit:junit</exclude>
<exclude>bouncycastle:bcprov-jdk15</exclude>
</excludes>
<unpackOptions>
<excludes>
<exclude>**/INDEX.LIST</exclude>
<exclude>**/MANIFEST.MF</exclude>
<exclude>**/LICENSE.txt</exclude>
<exclude>**/NOTICE.txt</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/NOTICE</exclude>
<exclude>**/log4j.properties</exclude>
<exclude>**/log4j.xml</exclude>
<exclude>**/logback.xml</exclude>
<exclude>META-INF/services/java.sql.Driver</exclude>
<exclude>overview.html</exclude>
<exclude>client-config.wsdd</exclude>
<exclude>ARCS.SF</exclude>
<exclude>ARCS.RSA</exclude>
<exclude>arcs/__init__.py</exclude>
<exclude>gsindl/__init__.py</exclude>
<exclude>arcs/shibboleth/__init__.py</exclude>
<exclude>arcs/shibboleth/client/__init__.py</exclude>
<exclude>gluev12r2-ext-class-map.properties</exclude>
<exclude>rebel.xml</exclude>
<exclude>META-INF/maven/**</exclude>
<exclude>**/README.txt</exclude>
<exclude>META-INF/services/**</exclude>
</excludes>
</unpackOptions>
</dependencySet>
</dependencySets>
<!--to make sure the right log4j.properties file is used -->
<files>
<file>
<source>src/main/resources/logback.xml</source>
<outputDirectory>/</outputDirectory>
</file>
<!-- just a zip weirdness otherwise it would be in the jar twice and jarsigner wouldn't sign it... -->
<file>
<source>__init__.py</source>
<outputDirectory>/arcs</outputDirectory>
</file>
<file>
<source>__init__.py</source>
<outputDirectory>/arcs/shibboleth</outputDirectory>
</file>
<file>
<source>__init__.py</source>
<outputDirectory>/arcs/shibboleth/client</outputDirectory>
</file>
<file>
<source>__init__.py</source>
<outputDirectory>/gsindl</outputDirectory>
</file>
</files>
</assembly>