diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2010-05-31 15:18:52 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2010-05-31 15:18:52 +0000 |
commit | 8d102095391e5e027754c62aacc4d054dae5b676 (patch) | |
tree | 035c5cdc5e6e0d722886bdf18998f6e778688814 | |
parent | e91a7c1b77d8e36a7268cc6c7cf8a6aba72f449f (diff) | |
download | mocca-8d102095391e5e027754c62aacc4d054dae5b676.tar.gz mocca-8d102095391e5e027754c62aacc4d054dae5b676.tar.bz2 mocca-8d102095391e5e027754c62aacc4d054dae5b676.zip |
include certificates (default trust/certstores) in webapp filesystem.
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@746 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
-rw-r--r-- | BKULocal/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/BKULocal/pom.xml b/BKULocal/pom.xml index c159aeec..132f44b4 100644 --- a/BKULocal/pom.xml +++ b/BKULocal/pom.xml @@ -20,6 +20,8 @@ <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> + <!-- TODO: load webapp jars via jnlp + <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes--> <archive> <manifestEntries> <Implementation-Build>${project.version}-r${buildNumber}</Implementation-Build> @@ -59,6 +61,19 @@ <outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory> </configuration> </execution> + <execution> + <!-- certificates in webapp filesystem (default trust/certstores) --> + <id>copy-certificates</id> + <goals> + <goal>unpack-dependencies</goal> + </goals> + <configuration> + <includeArtifactIds>BKUCertificates</includeArtifactIds> + <includeGroupIds>at.gv.egiz</includeGroupIds> + <excludes>META-INF/</excludes> + <outputDirectory>${project.build.directory}/classes</outputDirectory> + </configuration> + </execution> </executions> </plugin> </plugins> @@ -106,6 +121,11 @@ <version>${project.parent.version}</version> </dependency> <dependency> + <artifactId>BKUCertificates</artifactId> + <groupId>at.gv.egiz</groupId> + <version>1.2</version> + </dependency> + <dependency> <groupId>iaik</groupId> <artifactId>iaik_xsect</artifactId> </dependency> |