1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd" >
<id>bin</id>
<formats>
<format>zip</format>
</formats>
<dependencySets>
<!-- Example dependency set. Directory and file mode and scope are important -->
<!--
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<directoryMode>774</directoryMode>
<fileMode>444</fileMode>
<scope>compile</scope>
<includes>
<include>*:jar:*</include>
</includes>
</dependencySet>
-->
</dependencySets>
<fileSets>
<!-- Documentation -->
<fileSet>
<directory>doc/</directory>
<outputDirectory>/doc</outputDirectory>
</fileSet>
<fileSet>
<directory>target/site/apidocs</directory>
<outputDirectory>/doc/api</outputDirectory>
</fileSet>
<!-- Copy execution scripts into the root of the package -->
<!--
<fileSet>
<directory>src/main/bash</directory>
<outputDirectory/>
<includes>
<include>*.sh</include>
</includes>
<fileMode>0755</fileMode>
<directoryMode>0755</directoryMode>
</fileSet>
-->
</fileSets>
</assembly>
|