aboutsummaryrefslogtreecommitdiffstats
path: root/boot/assembly.xml
diff options
context:
space:
mode:
Diffstat (limited to 'boot/assembly.xml')
-rw-r--r--boot/assembly.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/boot/assembly.xml b/boot/assembly.xml
new file mode 100644
index 00000000..34defef0
--- /dev/null
+++ b/boot/assembly.xml
@@ -0,0 +1,21 @@
+<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>boot</id>
+ <formats>
+ <format>zip</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>${basedir}</directory>
+ <includes>
+ <include>*</include>
+ </includes>
+ <excludes>
+ <exclude>assembly.xml</exclude>
+ <exclude>pom.xml</exclude>
+ <exclude>target</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+</assembly>