Bumped Spring version to 3.1.2
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -66,11 +66,11 @@ configure(subprojects) { subproject ->
|
||||
compile "org.codehaus.jackson:jackson-mapper-asl:$jacksonVersion"
|
||||
|
||||
// Spring
|
||||
compile "org.springframework:spring-beans:$springVersion"
|
||||
compile "org.springframework:spring-context:$springVersion"
|
||||
compile "org.springframework:spring-core:$springVersion"
|
||||
compile "org.springframework:spring-orm:$springVersion"
|
||||
compile "org.springframework:spring-web:$springVersion"
|
||||
compile("org.springframework:spring-beans:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-context:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-core:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-orm:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-web:$springVersion") { force = true }
|
||||
|
||||
// Testing
|
||||
testCompile "org.spockframework:spock-core:$spockVersion"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
dependencies {
|
||||
|
||||
// Google Guava
|
||||
compile "com.google.guava:guava:11.0.2"
|
||||
compile "com.google.guava:guava:12.0"
|
||||
|
||||
}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
dependencies {
|
||||
|
||||
// Spring
|
||||
compile "org.springframework:spring-orm:$springVersion"
|
||||
compile "org.springframework:spring-oxm:$springVersion"
|
||||
compile "org.springframework:spring-tx:$springVersion"
|
||||
compile("org.springframework:spring-orm:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-oxm:$springVersion") { force = true }
|
||||
compile("org.springframework:spring-tx:$springVersion") { force = true }
|
||||
|
||||
// JPA
|
||||
compile "org.hibernate.javax.persistence:hibernate-jpa-2.0-api:1.0.1.Final"
|
||||
|
||||
Reference in New Issue
Block a user