Michael Lando | 4d97d5f | 2017-06-17 22:40:44 +0300 | [diff] [blame] | 1 | <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
| 4 | <id>tools</id> |
| 5 | <formats> |
| 6 | <format>zip</format> |
| 7 | </formats> |
| 8 | |
| 9 | <includeBaseDirectory>false</includeBaseDirectory> |
Michael Lando | 4d97d5f | 2017-06-17 22:40:44 +0300 | [diff] [blame] | 10 | <files> |
| 11 | <file> |
| 12 | <source>src/main/resources/zusammenMainTool.sh</source> |
| 13 | </file> |
| 14 | </files> |
| 15 | |
| 16 | <fileSets> |
| 17 | <fileSet> |
| 18 | <includes> |
| 19 | <include>zusammenMainTool.sh</include> |
| 20 | </includes> |
| 21 | <fileMode>0755</fileMode> |
| 22 | </fileSet> |
| 23 | <fileSet> |
Michael Lando | 4d97d5f | 2017-06-17 22:40:44 +0300 | [diff] [blame] | 24 | <directory>${basedir}/target/lib</directory> |
| 25 | <outputDirectory>/lib</outputDirectory> |
| 26 | </fileSet> |
Gautam Shah | 09a41f5 | 2018-04-11 19:55:29 +0530 | [diff] [blame] | 27 | |
Michael Lando | 4d97d5f | 2017-06-17 22:40:44 +0300 | [diff] [blame] | 28 | </fileSets> |
Gautam Shah | 09a41f5 | 2018-04-11 19:55:29 +0530 | [diff] [blame] | 29 | |
Michael Lando | 4d97d5f | 2017-06-17 22:40:44 +0300 | [diff] [blame] | 30 | </assembly> |
| 31 | |