| <?xml version="1.0"?> |
| <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1 http://maven.apache.org/xsd/assembly-1.1.1.xsd"> |
| <id>src</id> |
| <formats> |
| <format>tar.gz</format> |
| </formats> |
| <fileSets> |
| <fileSet> |
| <includes> |
| <include>${basedir}/*.txt</include> |
| </includes> |
| </fileSet> |
| <fileSet> |
| <includes> |
| <include>pom.xml</include> |
| </includes> |
| </fileSet> |
| <fileSet> |
| <directory>src</directory> |
| </fileSet> |
| <fileSet> |
| <directory>conf</directory> |
| </fileSet> |
| <fileSet> |
| <directory>bin</directory> |
| <fileMode>755</fileMode> |
| </fileSet> |
| </fileSets> |
| </assembly> |