diff options
Diffstat (limited to 'id/server')
-rw-r--r-- | id/server/auth-edu/pom.xml | 5 | ||||
-rw-r--r-- | id/server/auth-final/pom.xml | 5 | ||||
-rw-r--r-- | id/server/idserverlib/pom.xml | 16 | ||||
-rw-r--r-- | id/server/moa-id-commons/pom.xml | 5 | ||||
-rw-r--r-- | id/server/pom.xml | 2 |
5 files changed, 30 insertions, 3 deletions
diff --git a/id/server/auth-edu/pom.xml b/id/server/auth-edu/pom.xml index b550249e9..4e01c6260 100644 --- a/id/server/auth-edu/pom.xml +++ b/id/server/auth-edu/pom.xml @@ -275,6 +275,11 @@ </exclusions> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-tx</artifactId> + <version>${org.springframework.version}</version> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> diff --git a/id/server/auth-final/pom.xml b/id/server/auth-final/pom.xml index b2f542880..4f5f219a1 100644 --- a/id/server/auth-final/pom.xml +++ b/id/server/auth-final/pom.xml @@ -243,6 +243,11 @@ </exclusions> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-tx</artifactId> + <version>${org.springframework.version}</version> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> diff --git a/id/server/idserverlib/pom.xml b/id/server/idserverlib/pom.xml index 4a2125c85..6c6353be0 100644 --- a/id/server/idserverlib/pom.xml +++ b/id/server/idserverlib/pom.xml @@ -205,6 +205,12 @@ <artifactId>unitils-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
<!-- <dependency>
<groupId>MOA</groupId>
<artifactId>moa-common</artifactId>
@@ -393,12 +399,18 @@ <artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-tx</artifactId>
+ <version>${org.springframework.version}</version>
+ </dependency>
+
<!-- Redis -->
- <dependency>
+ <dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
- <version>1.6.4.RELEASE</version>
+ <version>1.7.2.RELEASE</version>
</dependency>
<dependency>
diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index 4e8d77a4f..6b9591059 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -234,6 +234,11 @@ <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-tx</artifactId> + <version>${org.springframework.version}</version> + </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> diff --git a/id/server/pom.xml b/id/server/pom.xml index 56d317cf5..1824bf272 100644 --- a/id/server/pom.xml +++ b/id/server/pom.xml @@ -104,7 +104,7 @@ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.11</version>
+ <version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
|