Files
spring-statemachine/spring-statemachine-data/build.gradle
Janne Valkealahti 3cc626c947 Upgrade to Boot 1.4.1
- 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
2016-09-30 07:55:12 +01:00

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"
}
}