2013-05-01 18:31:29 -04:00
|
|
|
<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>dir</format>
|
|
|
|
</formats>
|
|
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
|
|
<fileSets>
|
|
|
|
<fileSet>
|
|
|
|
<directory>src/bin</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.sh</include>
|
|
|
|
</includes>
|
|
|
|
<fileMode>0644</fileMode>
|
|
|
|
</fileSet>
|
2013-05-02 17:35:06 -04:00
|
|
|
<fileSet>
|
|
|
|
<directory>/</directory>
|
2013-05-01 18:31:29 -04:00
|
|
|
<includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
<include>LICENSE</include>
|
2013-05-01 18:31:29 -04:00
|
|
|
</includes>
|
2013-05-02 17:35:06 -04:00
|
|
|
</fileSet>
|
|
|
|
</fileSets>
|
|
|
|
<dependencySets>
|
|
|
|
<dependencySet>
|
|
|
|
<useProjectArtifact>true</useProjectArtifact>
|
|
|
|
<useTransitiveDependencies>true</useTransitiveDependencies>
|
|
|
|
<outputDirectory>lib/</outputDirectory>
|
|
|
|
</dependencySet>
|
|
|
|
</dependencySets>
|
2013-05-01 18:31:29 -04:00
|
|
|
</assembly>
|