source: VirtualCollectionRegistry/branches/VirtualCollectionRegistry-1.0-beta/src/assembly/distribution.xml @ 5596

Last change on this file since 5596 was 5596, checked in by Twan Goosen, 10 years ago

created a branch for VCR 1.0-beta. Trunk now 1.1-SNAPSHOT

File size: 1011 bytes
Line 
1<!-- based on the 'bin' descriptor -->
2<assembly 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>distribution</id>
6    <formats>
7        <format>tar.gz</format>
8    </formats>
9    <fileSets>
10        <fileSet>
11            <directory>${project.basedir}/doc</directory>
12            <outputDirectory>/doc</outputDirectory>
13        </fileSet>
14        <fileSet>
15            <directory>${project.build.directory}</directory>
16            <outputDirectory>/war</outputDirectory>
17            <includes>
18                <include>*.war</include>
19            </includes>
20        </fileSet>
21        <fileSet>
22            <directory>${project.build.directory}/site</directory>
23            <outputDirectory>docs</outputDirectory>
24        </fileSet>
25    </fileSets>
26</assembly>
Note: See TracBrowser for help on using the repository browser.