summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BKUApplet/pom.xml8
-rw-r--r--BKULocal/pom.xml2
-rw-r--r--BKUOnline/pom.xml18
3 files changed, 20 insertions, 8 deletions
diff --git a/BKUApplet/pom.xml b/BKUApplet/pom.xml
index 10cfa53a..d7d74b5e 100644
--- a/BKUApplet/pom.xml
+++ b/BKUApplet/pom.xml
@@ -18,11 +18,13 @@
<execution>
<id>unpack</id>
<goals>
- <goal>unpack</goal>
+ <goal>unpack-dependencies</goal>
</goals>
<configuration>
+ <includeGroupIds>at.gv.egiz</includeGroupIds>
+ <excludeTransitive>true</excludeTransitive>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
- <excludes>META-INF\/</excludes>
+ <excludes>META-INF\/</excludes><!--
<artifactItems>
<artifactItem>
<groupId>at.gv.egiz</groupId>
@@ -50,7 +52,7 @@
<type>jar</type>
</artifactItem>
</artifactItems>
- </configuration>
+ --></configuration>
</execution>
</executions>
</plugin>
diff --git a/BKULocal/pom.xml b/BKULocal/pom.xml
index 48b6d590..54de31b2 100644
--- a/BKULocal/pom.xml
+++ b/BKULocal/pom.xml
@@ -97,7 +97,7 @@
<dependency>
<groupId>at.gv.egiz</groupId>
<artifactId>BKUApplet</artifactId>
- <version>1.0</version>
+ <version>1.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>at.gv.egiz</groupId>
diff --git a/BKUOnline/pom.xml b/BKUOnline/pom.xml
index cee17e20..1afb9632 100644
--- a/BKUOnline/pom.xml
+++ b/BKUOnline/pom.xml
@@ -65,6 +65,13 @@
<version>1.0.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>at.gv.egiz</groupId>
+ <artifactId>STALService</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+
<!--
| see https://wsit.dev.java.net/issues/show_bug.cgi?id=970
-->
@@ -98,10 +105,11 @@
<execution>
<id>copyapplet</id>
<goals>
- <goal>copy</goal>
+ <goal>copy-dependencies</goal>
</goals>
<configuration>
- <artifactItems>
+ <outputDirectory>${project.build.directory}/${project.build.finalName}/applet</outputDirectory>
+ <!--<artifactItems>
<artifactItem>
<groupId>at.gv.egiz</groupId>
<artifactId>BKUApplet</artifactId>
@@ -115,8 +123,10 @@
<groupId>iaik</groupId>
<artifactId>iaik_jce_me4se</artifactId>
</artifactItem>
- </artifactItems>
- <outputDirectory>${project.build.directory}/${project.build.finalName}/applet</outputDirectory>
+ </artifactItems>-->
+ <includeGroupIds>at.gv.egiz</includeGroupIds>
+ <includeArtifactIds>BKUApplet</includeArtifactIds>
+ <excludeTransitive>true</excludeTransitive>
</configuration>
</execution>
</executions>