diff options
Diffstat (limited to 'BKUOnline/pom.xml')
-rw-r--r-- | BKUOnline/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/BKUOnline/pom.xml b/BKUOnline/pom.xml index bd46041f..17fa78b0 100644 --- a/BKUOnline/pom.xml +++ b/BKUOnline/pom.xml @@ -215,6 +215,8 @@ </build> </profile> <profile> + <!-- make sure this profile is active when building entire BKU, + | in order to account for BKUWebStart dependency in reactor build order --> <id>include-webstart</id> <build> <plugins> @@ -235,7 +237,6 @@ <artifactItem> <groupId>at.gv.egiz</groupId> <artifactId>BKUWebStart</artifactId> - <version>1.0.3-SNAPSHOT</version> <type>zip</type> </artifactItem> </artifactItems> @@ -254,6 +255,16 @@ <artifactId>jnlp-servlet</artifactId> <version>1.6.0.10</version> </dependency> + <!-- dependency to ensure BKUWebStart is build prior to BKUOnline; + | transitive dependencies shall not be included in WEB-INF/lib + | and are provided in the BKUWebStart zip --> + <dependency> + <groupId>at.gv.egiz</groupId> + <artifactId>BKUWebStart</artifactId> + <version>1.0.4-SNAPSHOT</version> + <scope>provided</scope> + <type>zip</type> + </dependency> </dependencies> </profile> |