source: VirtualCollectionRegistry/trunk/VirtualCollectionRegistry/src/assembly/distribution.xml @ 5594

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

Added REST service information to the help page. Moved the documentation into a separate 'doc' directory in the project.
Refs #614

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.