generated from padogrid/bundle-hazelcast-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly-descriptor.xml
executable file
·63 lines (59 loc) · 1.76 KB
/
assembly-descriptor.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
<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>bundle-assembly</id>
<formats>
<format>zip</format>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>${project.name}</baseDirectory>
<fileSets>
<!-- Include documents and their image artifacts in the 'bundles/doc' directory
so that they can be referenced after the bundle is installed. -->
<fileSet>
<outputDirectory>bundles/doc/${project.name}</outputDirectory>
<includes>
<include>*.md</include>
<include>images/</include>
</includes>
<excludes>
<exclude>README_HEADER.md</exclude>
</excludes>
</fileSet>
<!-- Include bundle components -->
<fileSet>
<directory>apps</directory>
<outputDirectory>apps</outputDirectory>
<includes>
<include>**</include>
</includes>
</fileSet>
<fileSet>
<directory>clusters</directory>
<outputDirectory>clusters</outputDirectory>
<includes>
<include>**</include>
</includes>
</fileSet>
<!-- Executable permissions -->
<fileSet>
<directory>apps/perf_test_sb/bin_sh</directory>
<outputDirectory>apps/perf_test_sb/bin_sh</outputDirectory>
<includes>
<include>**</include>
</includes>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
<fileSet>
<directory>clusters/sb/bin_sh</directory>
<outputDirectory>clusters/sb/bin_sh</outputDirectory>
<includes>
<include>**</include>
</includes>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
</fileSets>
</assembly>