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" |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 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}-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> |
Michael Lando | 3283393 | 2017-07-24 23:21:12 +0300 | [diff] [blame] | 25 | <fileSet> |
| 26 | <directory>tosca</directory> |
| 27 | <outputDirectory>tosca</outputDirectory> |
| 28 | </fileSet> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 29 | </fileSets> |
| 30 | </assembly> |