Files
spring-statemachine/spring-statemachine-data/build.gradle
Janne Valkealahti c7951c5001 Use references in RepositoryTransition
- Refactor so that we can create RepositoryState in one place
  and then reference to it from JpaRepositoryTransition impls.
- New common top class BaseRepositoryEntity for entities
- Change RepositoryState and RepositoryTransition to be abstract
  classes instead of interfaces.
- New custom StateMachineJackson2RepositoryPopulatorFactoryBean and
  StateMachineJackson2ResourceReader handling json refs.
- Relates to #262
2016-10-09 10:21:22 +01:00

16 lines
710 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"
testCompile project(":spring-statemachine-test")
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"
}
}