Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi: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}.war</source> |
| 11 | <outputDirectory>./</outputDirectory> |
| 12 | <destName>${project.artifactId}-${project.version}.war</destName> |
| 13 | </file> |
| 14 | <file> |
| 15 | <source>src/main/resources/jetty-ipaccess.xml</source> |
| 16 | <outputDirectory>./</outputDirectory> |
| 17 | <destName>jetty-ipaccess.xml</destName> |
| 18 | </file> |
| 19 | </files> |
| 20 | |
| 21 | <fileSets> |
| 22 | <fileSet> |
| 23 | <directory>src/main/resources/config</directory> |
| 24 | <outputDirectory>config</outputDirectory> |
| 25 | </fileSet> |
| 26 | <fileSet> |
| 27 | <directory>src/main/resources/scripts</directory> |
| 28 | <outputDirectory>scripts</outputDirectory> |
| 29 | </fileSet> |
| 30 | </fileSets> |
| 31 | |
| 32 | </assembly> |