diff options
author | mcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-11-24 16:46:24 +0000 |
---|---|---|
committer | mcentner <mcentner@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-11-24 16:46:24 +0000 |
commit | 441f640f3d772559e8f727951438b97eff8e0c53 (patch) | |
tree | a01492217193f9f0a6b047e92ac92b35c6907edb | |
parent | 322cca2c8fe57b7ca7ee1d4766ef31833e6825d7 (diff) | |
download | mocca-441f640f3d772559e8f727951438b97eff8e0c53.tar.gz mocca-441f640f3d772559e8f727951438b97eff8e0c53.tar.bz2 mocca-441f640f3d772559e8f727951438b97eff8e0c53.zip |
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@196 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
-rw-r--r-- | BKUOnline/pom.xml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/BKUOnline/pom.xml b/BKUOnline/pom.xml index 1afb9632..49e6071f 100644 --- a/BKUOnline/pom.xml +++ b/BKUOnline/pom.xml @@ -69,7 +69,6 @@ <groupId>at.gv.egiz</groupId>
<artifactId>STALService</artifactId>
<version>1.0.0-SNAPSHOT</version>
- <scope>provided</scope>
</dependency>
<!--
@@ -103,7 +102,7 @@ <artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
- <id>copyapplet</id>
+ <id>copyapplet-dependencies</id>
<goals>
<goal>copy-dependencies</goal>
</goals>
@@ -129,6 +128,25 @@ <excludeTransitive>true</excludeTransitive>
</configuration>
</execution>
+ <execution>
+ <id>copyapplet</id>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.build.directory}/${project.build.finalName}/applet</outputDirectory>
+ <artifactItems>
+ <artifactItem>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </artifactItem>
+ <artifactItem>
+ <groupId>iaik</groupId>
+ <artifactId>iaik_jce_me4se</artifactId>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
</executions>
</plugin>
<!--plugin>
|