source: trunk/autoquest-distribution/src/main/assembly/bin.xml @ 2226

Last change on this file since 2226 was 2226, checked in by pharms, 7 years ago
File size: 1.6 KB
RevLine 
[980]1<assembly
2    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
[2200]5  <id>bin-${envClassifier}</id>
[980]6  <formats>
[982]7    <format>tar.gz</format>
[1403]8    <format>dir</format>
9    <!--format>tar.bz2</format>
[980]10    <format>zip</format-->
11  </formats>
[2114]12  <dependencySets>
13    <dependencySet>
[1016]14      <!-- add all dependencies except autoquest-runner into the lib directory -->
[980]15      <!-- useAllReactorProjects>true</useAllReactorProjects-->
16      <includes></includes>
17      <excludes>
18        <exclude>de.ugoe.cs.autoquest:autoquest-runner</exclude>
19      </excludes>
[2114]20      <outputDirectory>lib</outputDirectory>
21      <unpack>false</unpack>
22    </dependencySet>
[2226]23    <!-- dependencySet -->
[1016]24      <!-- add only autoquest-runner to the main directory -->
[2226]25      <!-- includes>
[980]26          <include>de.ugoe.cs.autoquest:autoquest-runner</include>
27      </includes>
[2114]28      <outputDirectory></outputDirectory>
29      <unpack>false</unpack>
[2226]30    </dependencySet-->
[2114]31  </dependencySets>
[980]32  <fileSets>
33    <fileSet>
34      <directory>target/bin</directory>
35      <outputDirectory>bin</outputDirectory>
36      <fileMode>775</fileMode>
37      <includes>
38        <include>*</include>
39      </includes>
40    </fileSet>
41    <fileSet>
42      <directory>target/data</directory>
43      <outputDirectory>data</outputDirectory>
44      <excludes>
45        <exclude>META-INF/**</exclude>
46      </excludes>
47    </fileSet>
48  </fileSets>
49</assembly>
Note: See TracBrowser for help on using the repository browser.