- Align related spring train deps - Modify some other deps to get correct versions - Some testing changes as boot 1.4.1 shuffled some test stuff around. - Fixed deprecations with newer boot and framework - Fixes #256
13 lines
490 B
Groovy
13 lines
490 B
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"
|
|
optional "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
|
|
testCompile "org.hsqldb:hsqldb:$hsqlVersion"
|
|
testCompile "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
|
|
}
|
|
}
|