- Focus of this change is to get latest deps from boot 1.5.x and framework 4.3.x. - This commit changes baseline from boot 1.4.x to 1.5.x and effectively causes below changes: -springDataRedisVersion=1.7.3.RELEASE +springDataRedisVersion=1.8.18.RELEASE -commonsPool2Version=2.4.2 +commonsPool2Version=2.4.3 -springBootVersion=1.4.1.RELEASE +springBootVersion=1.5.19.RELEASE -springSessionVersion=1.0.2.RELEASE +springSessionVersion=1.3.5.RELEASE -tomcatEmbedVersion=8.5.5 +tomcatEmbedVersion=8.5.37 -springSecurityVersion=4.0.3.RELEASE +springSecurityVersion=4.2.11.RELEASE -springVersion=4.3.3.RELEASE +springVersion=4.3.22.RELEASE -springDataMongoDbVersion=1.9.3.RELEASE +springDataMongoDbVersion=1.10.18.RELEASE -springDataCommonsVersion=1.12.3.RELEASE +springDataCommonsVersion=1.13.18.RELEASE -springDataJpaVersion=1.10.3.RELEASE +springDataJpaVersion=1.11.18.RELEASE - Fix MongoDbRule so that it detects non existend mongo faster. - Fixes #698
49 lines
2.4 KiB
Groovy
49 lines
2.4 KiB
Groovy
description = "Spring State Machine Data Common"
|
|
|
|
project('spring-statemachine-data-jpa') {
|
|
description = "Spring State Machine Data Jpa"
|
|
dependencies {
|
|
compile project(":spring-statemachine-data-common")
|
|
compile "org.springframework:spring-orm:$springVersion"
|
|
testCompile project(":spring-statemachine-test")
|
|
testCompile project(path:":spring-statemachine-data-common", configuration:"testArtifacts")
|
|
optional "org.eclipse.persistence:javax.persistence:$eclipsePersistenceVersion"
|
|
testCompile "org.hsqldb:hsqldb:$hsqlVersion"
|
|
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
|
|
}
|
|
}
|
|
|
|
project('spring-statemachine-data-redis') {
|
|
description = "Spring State Machine Data Redis"
|
|
dependencies {
|
|
compile project(":spring-statemachine-data-common")
|
|
compile "org.springframework.data:spring-data-redis:$springDataRedisVersion"
|
|
testCompile project(":spring-statemachine-test")
|
|
optional "org.eclipse.persistence:javax.persistence:$eclipsePersistenceVersion"
|
|
testCompile project(path:":spring-statemachine-data-common", configuration:"testArtifacts")
|
|
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-data-redis:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
|
|
}
|
|
}
|
|
|
|
project('spring-statemachine-data-mongodb') {
|
|
description = "Spring State Machine Data MongoDB"
|
|
dependencies {
|
|
compile project(":spring-statemachine-data-common")
|
|
compile("org.springframework.data:spring-data-mongodb:$springDataMongoDbVersion") { dep ->
|
|
exclude group: "org.mongodb", module: "mongo-java-driver"
|
|
}
|
|
testCompile "org.mongodb:mongodb-driver:$mongoDbVersion"
|
|
testCompile project(":spring-statemachine-test")
|
|
optional "org.eclipse.persistence:javax.persistence:$eclipsePersistenceVersion"
|
|
testCompile project(path:":spring-statemachine-data-common", configuration:"testArtifacts")
|
|
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-data-mongodb:$springBootVersion"
|
|
testRuntime "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
|
|
}
|
|
}
|
|
|