-
Notifications
You must be signed in to change notification settings - Fork 1
/
source-package.xml
91 lines (89 loc) · 2.69 KB
/
source-package.xml
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
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
<id>source-package</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.basedir}/bin</directory>
<outputDirectory>bin</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/conf</directory>
<outputDirectory>conf</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-client</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-client</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-contrib</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-contrib</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-docs</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-docs</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-it</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-it</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-jute</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-jute</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-recipes</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-recipes</outputDirectory>
</fileSet>
<fileSet>
<directory>${project.basedir}/zookeeper-server</directory>
<excludes>
<exclude>**/target/**</exclude>
</excludes>
<outputDirectory>zookeeper-server</outputDirectory>
</fileSet>
</fileSets>
<files>
<file>
<source>${project.basedir}/pom.xml</source>
</file>
<file>
<source>${project.basedir}/source-package.xml</source>
</file>
<file>
<source>${project.basedir}/LICENSE.txt</source>
</file>
<file>
<source>${project.basedir}/NOTICE.txt</source>
</file>
<file>
<source>${project.basedir}/README.md</source>
</file>
<file>
<source>${project.basedir}/README_packaging.txt</source>
</file>
</files>
</assembly>