Mercurial > dive4elements > river
comparison 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 |
comparison
equal
deleted
inserted
replaced
8513:6b8410ba48cb | 8514:97d2a83118e4 |
---|---|
1 <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" | |
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
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"> | |
4 <id>bin</id> | |
5 <formats> | |
6 <format>tar.bz2</format> | |
7 </formats> | |
8 <fileSets> | |
9 <fileSet> | |
10 <directory>${project.basedir}/bin</directory> | |
11 <outputDirectory>/bin</outputDirectory> | |
12 </fileSet> | |
13 <fileSet> | |
14 <directory>${project.basedir}/doc/conf</directory> | |
15 <outputDirectory>/conf</outputDirectory> | |
16 </fileSet> | |
17 <fileSet> | |
18 <!-- Include prepared artifact-DB if existant --> | |
19 <directory>${project.basedir}/artifactsdb</directory> | |
20 <outputDirectory>/artifactsdb</outputDirectory> | |
21 </fileSet> | |
22 <fileSet> | |
23 <!-- Include prepared datacage-DB if existant --> | |
24 <directory>${project.basedir}/datacagedb</directory> | |
25 <outputDirectory>/datacagedb</outputDirectory> | |
26 </fileSet> | |
27 <fileSet> | |
28 <directory>${project.basedir}/../backend/doc/schema</directory> | |
29 <outputDirectory>/schema</outputDirectory> | |
30 </fileSet> | |
31 </fileSets> | |
32 <dependencySets> | |
33 <dependencySet> | |
34 <outputDirectory>bin/lib</outputDirectory> | |
35 <useProjectArtifact>false</useProjectArtifact> | |
36 <excludes> | |
37 <exclude>jfree:jfreechart:jar:1.0.12</exclude> | |
38 </excludes> | |
39 </dependencySet> | |
40 </dependencySets> | |
41 </assembly> |