- 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
16 lines
710 B
Groovy
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"
|
|
}
|
|
}
|