blob: 5a15f4f288376811a688fafd812c5377ba9cd8a8 [file] [log] [blame]
Michael Lando4d97d5f2017-06-17 22:40:44 +03001<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 Lando4d97d5f2017-06-17 22:40:44 +030010 <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 Lando4d97d5f2017-06-17 22:40:44 +030024 <directory>${basedir}/target/lib</directory>
25 <outputDirectory>/lib</outputDirectory>
26 </fileSet>
Gautam Shah09a41f52018-04-11 19:55:29 +053027
Michael Lando4d97d5f2017-06-17 22:40:44 +030028 </fileSets>
Gautam Shah09a41f52018-04-11 19:55:29 +053029
Michael Lando4d97d5f2017-06-17 22:40:44 +030030</assembly>
31