| Line | |
|---|
| 1 | <assembly |
|---|
| 2 | xmlns="http://maven.apache.org/ASSEMBLY/2.0.0" |
|---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 4 | xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd"> |
|---|
| 5 | <id>bin-${envClassifier}</id> |
|---|
| 6 | <formats> |
|---|
| 7 | <format>tar.gz</format> |
|---|
| 8 | <format>dir</format> |
|---|
| 9 | <!--format>tar.bz2</format> |
|---|
| 10 | <format>zip</format--> |
|---|
| 11 | </formats> |
|---|
| 12 | <dependencySets> |
|---|
| 13 | <dependencySet> |
|---|
| 14 | <!-- add all dependencies except autoquest-runner into the lib directory --> |
|---|
| 15 | <!-- useAllReactorProjects>true</useAllReactorProjects--> |
|---|
| 16 | <includes></includes> |
|---|
| 17 | <excludes> |
|---|
| 18 | <exclude>de.ugoe.cs.autoquest:autoquest-runner</exclude> |
|---|
| 19 | </excludes> |
|---|
| 20 | <outputDirectory>lib</outputDirectory> |
|---|
| 21 | <unpack>false</unpack> |
|---|
| 22 | </dependencySet> |
|---|
| 23 | <dependencySet> |
|---|
| 24 | <!-- add only autoquest-runner to the main directory --> |
|---|
| 25 | <includes> |
|---|
| 26 | <include>de.ugoe.cs.autoquest:autoquest-runner</include> |
|---|
| 27 | </includes> |
|---|
| 28 | <useTransitiveDependencies>false</useTransitiveDependencies> |
|---|
| 29 | <outputDirectory></outputDirectory> |
|---|
| 30 | <unpack>false</unpack> |
|---|
| 31 | </dependencySet> |
|---|
| 32 | </dependencySets> |
|---|
| 33 | <fileSets> |
|---|
| 34 | <fileSet> |
|---|
| 35 | <directory>target/bin</directory> |
|---|
| 36 | <outputDirectory>bin</outputDirectory> |
|---|
| 37 | <fileMode>775</fileMode> |
|---|
| 38 | <includes> |
|---|
| 39 | <include>*</include> |
|---|
| 40 | </includes> |
|---|
| 41 | </fileSet> |
|---|
| 42 | <fileSet> |
|---|
| 43 | <directory>target/data</directory> |
|---|
| 44 | <outputDirectory>data</outputDirectory> |
|---|
| 45 | <excludes> |
|---|
| 46 | <exclude>META-INF/**</exclude> |
|---|
| 47 | </excludes> |
|---|
| 48 | </fileSet> |
|---|
| 49 | </fileSets> |
|---|
| 50 | </assembly> |
|---|
Note: See
TracBrowser
for help on using the repository browser.