forked from thomasdarimont/keycloak-health-checks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathassembly.xml
33 lines (33 loc) · 1.03 KB
/
assembly.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
<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>dist</id>
<formats>
<format>tar.gz</format>
</formats>
<baseDirectory>${project.name}</baseDirectory>
<files>
<file>
<source>install.sh</source>
<fileMode>0755</fileMode>
</file>
<file>
<source>module.conf</source>
</file>
</files>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>target</outputDirectory>
<includes>
<include>${project.build.finalName}.jar</include>
</includes>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>target/libs</outputDirectory>
<includes/>
</dependencySet>
</dependencySets>
</assembly>