annotate artifacts/src/assembly/assembly.xml @ 8514:97d2a83118e4

Configure standalone binary assembly.
author Tom Gottfried <tom@intevation.de>
date Wed, 17 Dec 2014 16:16:02 +0100
parents
children dc02c7f96ad8
rev   line source
8514
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
1 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
3 xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
4 <id>bin</id>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
5 <formats>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
6 <format>tar.bz2</format>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
7 </formats>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
8 <fileSets>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
9 <fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
10 <directory>${project.basedir}/bin</directory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
11 <outputDirectory>/bin</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
12 </fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
13 <fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
14 <directory>${project.basedir}/doc/conf</directory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
15 <outputDirectory>/conf</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
16 </fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
17 <fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
18 <!-- Include prepared artifact-DB if existant -->
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
19 <directory>${project.basedir}/artifactsdb</directory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
20 <outputDirectory>/artifactsdb</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
21 </fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
22 <fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
23 <!-- Include prepared datacage-DB if existant -->
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
24 <directory>${project.basedir}/datacagedb</directory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
25 <outputDirectory>/datacagedb</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
26 </fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
27 <fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
28 <directory>${project.basedir}/../backend/doc/schema</directory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
29 <outputDirectory>/schema</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
30 </fileSet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
31 </fileSets>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
32 <dependencySets>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
33 <dependencySet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
34 <outputDirectory>bin/lib</outputDirectory>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
35 <useProjectArtifact>false</useProjectArtifact>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
36 <excludes>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
37 <exclude>jfree:jfreechart:jar:1.0.12</exclude>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
38 </excludes>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
39 </dependencySet>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
40 </dependencySets>
97d2a83118e4 Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff changeset
41 </assembly>

http://dive4elements.wald.intevation.org