blob: 62deb75e10b6e323663df38d7cd52d1dc5d08998 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
2xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
4 <id>bin</id>
5 <formats>
6 <format>tar</format>
7 </formats>
8 <files>
9 <file>
10 <source>${project.build.directory}/${project.artifactId}-${project.version}-jar-with-dependencies.jar</source>
11 <outputDirectory>./</outputDirectory>
12 <destName>${project.artifactId}-${project.version}-jar-with-dependencies.jar</destName>
13 </file>
14 </files>
15
16 <fileSets>
17 <fileSet>
18 <directory>src/main/resources/scripts</directory>
19 <outputDirectory>scripts</outputDirectory>
20 </fileSet>
21 <fileSet>
22 <directory>src/main/resources/config</directory>
23 <outputDirectory>config</outputDirectory>
24 </fileSet>
25 </fileSets>
26</assembly>