diff options
Diffstat (limited to 'id')
-rw-r--r-- | id/server/auth/pom.xml | 7 | ||||
-rw-r--r-- | id/server/idserverlib/pom.xml | 38 | ||||
-rw-r--r-- | id/server/moa-id-commons/pom.xml | 4 |
3 files changed, 37 insertions, 12 deletions
diff --git a/id/server/auth/pom.xml b/id/server/auth/pom.xml index 577270221..f18f0e1b0 100644 --- a/id/server/auth/pom.xml +++ b/id/server/auth/pom.xml @@ -29,6 +29,13 @@ <!--testSourceDirectory>${basedir}/../idserverlib/src/test/java</testSourceDirectory--> <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>versions-maven-plugin</artifactId> + <version>2.1</version> + </plugin> + + <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index 8280e631d..0212b176b 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -78,11 +78,11 @@ <artifactId>axis</artifactId>
</dependency>
- <dependency>
+<!-- <dependency>
<groupId>org.glassfish.metro</groupId>
<artifactId>webservices-tools</artifactId>
<version>2.3</version>
- </dependency>
+ </dependency> -->
<dependency>
<groupId>org.glassfish.metro</groupId>
<artifactId>webservices-rt</artifactId>
@@ -90,6 +90,11 @@ </dependency>
<dependency>
+ <groupId>javax.xml.bind</groupId>
+ <artifactId>jaxb-api</artifactId>
+ </dependency>
+
+ <dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
</dependency>
@@ -147,39 +152,39 @@ <artifactId>slf4j-simple</artifactId>
<version>1.7.6</version>
</dependency> -->
- <dependency>
+<!-- <dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.6</version>
- </dependency>
-<!-- <dependency>
+ </dependency> -->
+ <dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>1.7.6</version>
- </dependency> -->
- <dependency>
+ </dependency>
+<!-- <dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>1.7.6</version>
- </dependency>
+ </dependency> -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
- <dependency>
+ <dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
- <dependency>
+<!-- <dependency>
<groupId>commons-discovery</groupId>
<artifactId>commons-discovery</artifactId>
- </dependency>
+ </dependency> -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
- </dependency>
+ </dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
@@ -307,6 +312,15 @@ </executions>
</plugin> -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.8</version>
+ <executions>
+ </executions>
+ </plugin>
+
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index b49f438cf..02915ef18 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -109,6 +109,10 @@ <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> </exclusion> + <exclusion> + <artifactId>spring</artifactId> + <groupId>org.springframework</groupId> + </exclusion> </exclusions> </dependency> <dependency> |