aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/docker-assembly.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/docker-assembly.xml')
-rw-r--r--src/main/resources/docker-assembly.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/resources/docker-assembly.xml b/src/main/resources/docker-assembly.xml
new file mode 100644
index 0000000..afd1970
--- /dev/null
+++ b/src/main/resources/docker-assembly.xml
@@ -0,0 +1,23 @@
+<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>distribution</id>
+ <formats>
+ <format>jar</format>
+ </formats>
+ <fileSets>
+ <fileSet>
+ <directory>src/main/resources/etc/auth</directory>
+ <outputDirectory>/etc/auth</outputDirectory>
+ <filtered>false</filtered>
+ </fileSet>
+ </fileSets>
+
+<files>
+ <file>
+ <source>target/${project.artifactId}-${project.version}.${project.packaging}</source>
+ <outputDirectory>/</outputDirectory>
+ <filtered>false</filtered>
+ </file>
+</files>
+</assembly> \ No newline at end of file