-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackaging-zip.xml
More file actions
27 lines (27 loc) · 1.04 KB
/
packaging-zip.xml
File metadata and controls
27 lines (27 loc) · 1.04 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
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>package</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>${project.build.directory}/</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.exe</include>
<include>jdk-21.0.9+10-jre/**</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}/src/main/resources/standalone/</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>PASTIS-APP.*</include>
<include>readme.txt</include>
</includes>
</fileSet>
</fileSets>
</assembly>