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
Line 
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">
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      <outputDirectory></outputDirectory>
29      <unpack>false</unpack>
30    </dependencySet-->
31  </dependencySets>
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.