forked from m-a-hall/hop-cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassembly.xml
More file actions
110 lines (106 loc) · 3.67 KB
/
assembly.xml
File metadata and controls
110 lines (106 loc) · 3.67 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<baseDirectory>${project.artifactId}</baseDirectory>
<formats>
<format>zip</format>
</formats>
<files>
<file>
<source>${project.basedir}/src/main/resources/version.xml</source>
<outputDirectory>.</outputDirectory>
<filtered>true</filtered>
</file>
</files>
<fileSets>
<fileSet>
<includes>
<include>LICENSE.txt</include>
<!-- <include>plugin-machine-intelligence-master_OSS_Licenses.html</include> -->
</includes>
</fileSet>
<fileSet>
<directory>target/lib</directory>
<outputDirectory>lib</outputDirectory>
<excludes>
<!-- Exclude Hop core dependencies that are already provided -->
<exclude>hop-core-*.jar</exclude>
<exclude>hop-engine-*.jar</exclude>
<exclude>hop-ui-*.jar</exclude>
<exclude>org.eclipse.swt.*.jar</exclude>
<!-- Exclude test dependencies -->
<exclude>junit-*.jar</exclude>
<exclude>hamcrest-*.jar</exclude>
<!-- Exclude dependencies that Hop provides -->
<exclude>slf4j-*.jar</exclude>
<exclude>log4j-*.jar</exclude>
<exclude>jackson-*.jar</exclude>
<exclude>commons-io-*.jar</exclude>
<exclude>commons-lang-*.jar</exclude>
<exclude>commons-logging-*.jar</exclude>
<exclude>commons-codec-*.jar</exclude>
<exclude>commons-compress-*.jar</exclude>
<exclude>commons-collections-*.jar</exclude>
<exclude>commons-collections4-*.jar</exclude>
<exclude>commons-vfs2-*.jar</exclude>
<exclude>commons-validator-*.jar</exclude>
<exclude>commons-digester-*.jar</exclude>
<exclude>guava-*.jar</exclude>
<exclude>gson-*.jar</exclude>
<exclude>httpclient-*.jar</exclude>
<exclude>httpclient5-*.jar</exclude>
<exclude>httpcore-*.jar</exclude>
<exclude>httpcore5-*.jar</exclude>
<exclude>jetty-*.jar</exclude>
<exclude>jersey-*.jar</exclude>
<exclude>jakarta.*.jar</exclude>
<exclude>javax.*.jar</exclude>
<exclude>batik-*.jar</exclude>
<exclude>xmlgraphics-*.jar</exclude>
<exclude>xml-apis-*.jar</exclude>
<exclude>rhino-*.jar</exclude>
<exclude>avro-*.jar</exclude>
<exclude>snappy-*.jar</exclude>
<exclude>jandex-*.jar</exclude>
<exclude>javassist-*.jar</exclude>
<exclude>picocli-*.jar</exclude>
<exclude>encoder-*.jar</exclude>
<exclude>json-simple-*.jar</exclude>
<exclude>webservices-*.jar</exclude>
<exclude>hk2-*.jar</exclude>
<exclude>aopalliance-*.jar</exclude>
<exclude>osgi-*.jar</exclude>
<exclude>jsr305-*.jar</exclude>
<exclude>checker-qual-*.jar</exclude>
<exclude>error_prone_annotations-*.jar</exclude>
<exclude>failureaccess-*.jar</exclude>
<exclude>listenablefuture-*.jar</exclude>
<exclude>j2objc-*.jar</exclude>
<!-- Keep only what the plugin specifically needs -->
<!-- opencsv-*.jar - KEEP for CSV parsing -->
<!-- arrow-*.jar - KEEP for Arrow support -->
<!-- commons-beanutils-*.jar - KEEP as dependency of opencsv -->
<!-- commons-text-*.jar - KEEP as dependency of opencsv -->
<!-- commons-lang3-*.jar - KEEP as dependency of opencsv -->
<!-- flatbuffers-*.jar - KEEP as dependency of arrow -->
<!-- netty-*.jar - KEEP as dependency of arrow -->
</excludes>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>*.jar</include>
<include>version.xml</include>
</includes>
</fileSet>
<fileSet>
<directory>sample</directory>
<outputDirectory>sample</outputDirectory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
</fileSets>
</assembly>