-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathassembly.xml
31 lines (28 loc) · 990 Bytes
/
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
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>rocket-table</id>
<formats>
<format>zip</format>
</formats>
<files>
<file>
<source>target/rocket-table.jar</source>
</file>
<file>
<source>src/main/resources/io/github/xantorohara/rocket_table/icon.png</source>
</file>
<file>
<source>src/misc/rocket-table-associate-files.cmd</source>
</file>
<file>
<source>src/misc/rocket-table-console.cmd</source>
</file>
<file>
<source>src/misc/rocket-table-sas-format.cmd</source>
</file>
<file>
<source>LICENSE</source>
</file>
</files>
</assembly>