diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-02-06 09:15:59 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-02-06 09:15:59 +0100 |
commit | f9b31bdc4781d6eca20bc2d993f08f6a4eb462f2 (patch) | |
tree | 2228ff94390b31fa43bb18fc19b0ad1dce6eca55 /id/ConfigWebTool | |
parent | c38588d66605e8345664ff7fd935aafbf27237f9 (diff) | |
download | moa-id-spss-f9b31bdc4781d6eca20bc2d993f08f6a4eb462f2.tar.gz moa-id-spss-f9b31bdc4781d6eca20bc2d993f08f6a4eb462f2.tar.bz2 moa-id-spss-f9b31bdc4781d6eca20bc2d993f08f6a4eb462f2.zip |
new depenency management for moa-id-configuration
to avoid problems with HeapSpace
Diffstat (limited to 'id/ConfigWebTool')
-rw-r--r-- | id/ConfigWebTool/pom.xml | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/id/ConfigWebTool/pom.xml b/id/ConfigWebTool/pom.xml index ae8b62645..15228a30e 100644 --- a/id/ConfigWebTool/pom.xml +++ b/id/ConfigWebTool/pom.xml @@ -51,13 +51,40 @@ <groupId>MOA.id.server</groupId> <artifactId>moa-id-lib</artifactId> <!-- <version>1.9.98-SNAPSHOT</version> --> + <exclusions> + <exclusion> + <groupId>*</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> - <dependency> + <dependency> <groupId>at.gv.util</groupId> <artifactId>egovutils</artifactId> <version>1.0.4</version> - </dependency> + <exclusions> + <exclusion> + <groupId>com.sun</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> + + </dependency> + + <dependency> + <groupId>org.opensaml</groupId> + <artifactId>opensaml</artifactId> + </dependency> + <dependency> + <groupId>org.opensaml</groupId> + <artifactId>xmltooling</artifactId> + </dependency> + + <dependency> + <groupId>javax.mail</groupId> + <artifactId>mail</artifactId> + </dependency> <dependency> <groupId>org.apache.struts</groupId> |