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 | |
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
-rw-r--r-- | id/ConfigWebTool/pom.xml | 31 | ||||
-rw-r--r-- | id/server/idserverlib/pom.xml | 16 | ||||
-rw-r--r-- | pom.xml | 12 |
3 files changed, 48 insertions, 11 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> diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index 81213f721..68acb8841 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -175,17 +175,15 @@ </exclusions>
</dependency> -->
- <dependency>
+ <dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml</artifactId>
- <version>2.6.0</version>
- </dependency>
-
- <dependency>
- <groupId>org.opensaml</groupId>
- <artifactId>xmltooling</artifactId>
- <version>1.4.0</version>
- </dependency>
+ </dependency>
+ <dependency>
+ <groupId>org.opensaml</groupId>
+ <artifactId>xmltooling</artifactId>
+ </dependency>
+
<dependency>
<groupId>regexp</groupId>
<artifactId>regexp</artifactId>
@@ -94,6 +94,18 @@ <dependencyManagement>
<dependencies>
+ <dependency>
+ <groupId>org.opensaml</groupId>
+ <artifactId>opensaml</artifactId>
+ <version>2.6.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.opensaml</groupId>
+ <artifactId>xmltooling</artifactId>
+ <version>1.4.0</version>
+ </dependency>
+
+
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
|