summaryrefslogtreecommitdiff
path: root/docker/assembly.xml
diff options
context:
space:
mode:
Diffstat (limited to 'docker/assembly.xml')
-rw-r--r--docker/assembly.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/docker/assembly.xml b/docker/assembly.xml
new file mode 100644
index 0000000..132b78d
--- /dev/null
+++ b/docker/assembly.xml
@@ -0,0 +1,19 @@
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.2.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/2.2.0 http://maven.apache.org/xsd/assembly-2.2.0.xsd">
+
+ <fileSets>
+ <fileSet>
+ <directory>${project.build.directory}</directory>
+ <outputDirectory>/</outputDirectory>
+ <includes>
+ <include>${project.build.finalName}.xjar</include>
+ <include>xjar.go</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>config</directory>
+ <outputDirectory>/config</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>