Mercurial > dive4elements > river
annotate artifacts/src/assembly/assembly.xml @ 8730:cb33de3434a8
(issue1754) Proper subtitle handling for Radius
This deduplicates the subtitle and zoom / radius calculation code
by moving it out of the processors. Doing this fixes cases where
the subtitle would be removed when a the according filtered facet
was removed although it should still have shown the Range for example.
Range is now also added as a subtitle for the difference diagrams.
This adds some tasty hack (with cheese) to determine wether or
not the user has set the subtitle. See the comment in
getChartSubtitlePure in LongitudinalSectionGenerator2 for details.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Thu, 30 Apr 2015 13:06:51 +0200 |
parents | e21f847569e7 |
children | 93abc24a4972 |
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> |
8520
65a2944ec5bb
We don't need the base directory in the assembly.
Tom Gottfried <tom@intevation.de>
parents:
8516
diff
changeset
|
5 <includeBaseDirectory>false</includeBaseDirectory> |
8514
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
6 <formats> |
8521
e21f847569e7
It's useful to have an uncompressed tar to which more files can be appended.
Tom Gottfried <tom@intevation.de>
parents:
8520
diff
changeset
|
7 <format>tar</format> |
8514
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
8 <format>tar.bz2</format> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
9 </formats> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
10 <fileSets> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
11 <fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
12 <directory>${project.basedir}/bin</directory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
13 <outputDirectory>/bin</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
14 </fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
15 <fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
16 <directory>${project.basedir}/doc/conf</directory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
17 <outputDirectory>/conf</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
18 </fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
19 <fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
20 <!-- Include prepared artifact-DB if existant --> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
21 <directory>${project.basedir}/artifactsdb</directory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
22 <outputDirectory>/artifactsdb</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
23 </fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
24 <fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
25 <!-- Include prepared datacage-DB if existant --> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
26 <directory>${project.basedir}/datacagedb</directory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
27 <outputDirectory>/datacagedb</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
28 </fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
29 <fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
30 <directory>${project.basedir}/../backend/doc/schema</directory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
31 <outputDirectory>/schema</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
32 </fileSet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
33 </fileSets> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
34 <dependencySets> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
35 <dependencySet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
36 <outputDirectory>bin/lib</outputDirectory> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
37 </dependencySet> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
38 </dependencySets> |
97d2a83118e4
Configure standalone binary assembly.
Tom Gottfried <tom@intevation.de>
parents:
diff
changeset
|
39 </assembly> |