-
Notifications
You must be signed in to change notification settings - Fork 0
/
assembly-descriptor.xml
executable file
·50 lines (47 loc) · 1.42 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
<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>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<baseDirectory>${project.name}</baseDirectory>
<fileSets>
<!-- @template: Enter fileSet per component, i.e., apps, cluster, docker, k8s, pod -->
<fileSet>
<directory>apps</directory>
<outputDirectory>apps</outputDirectory>
<includes>
<include>**</include>
</includes>
</fileSet>
<fileSet>
<directory>k8s</directory>
<outputDirectory>k8s</outputDirectory>
<includes>
<include>**</include>
</includes>
</fileSet>
<!-- @template: Set executable permissions to all scripts here for each fileSet. -->
<!-- Executable permissions -->
<fileSet>
<directory>apps/myapp/bin_sh/</directory>
<outputDirectory>apps/myapp/bin_sh/</outputDirectory>
<includes>
<include>**</include>
</includes>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
<fileSet>
<directory>k8s/mykube/bin_sh/</directory>
<outputDirectory>k8s/mykube/bin_sh/</outputDirectory>
<includes>
<include>**</include>
</includes>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
</fileSets>
</assembly>