source: trunk/quest-jfcmonitor/src/main/assembly/bin.xml @ 826

Last change on this file since 826 was 826, checked in by sherbold, 12 years ago
  • created assembly for quest-jfcmonitor
  • Property svn:mime-type set to text/plain
File size: 993 bytes
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</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      <outputDirectory></outputDirectory>
15    </dependencySet>
16  </dependencySets>
17  <fileSets>
18    <fileSet>
19      <directory>bin</directory>
20      <outputDirectory></outputDirectory>
21      <fileMode>775</fileMode>
22      <includes>
23        <include>*</include>
24      </includes>
25    </fileSet>
26    <fileSet>
27      <directory>target/data</directory>
28      <outputDirectory>data</outputDirectory>
29      <excludes>
30        <exclude>META-INF/**</exclude>
31      </excludes>
32    </fileSet>
33  </fileSets>
34</assembly>
Note: See TracBrowser for help on using the repository browser.