- Focus of this commit is to have modern gradle build. - Migrate most of a plugin configurations from dsl into buildSrc. - This fixes issues with existing docs build. - Allows to sign files so that we have that part done for central in a build. - We can skip publishing samples. - We're able to share similar logic for modules which are meant for publish or just being samples. - It's easier to upgrade gradle versions without getting various build issues. - Relates #1143
22 lines
911 B
Groovy
22 lines
911 B
Groovy
plugins {
|
|
id 'org.springframework.statemachine.module'
|
|
}
|
|
|
|
description = 'Spring State Machine Data Redis'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
api project(':spring-statemachine-data-common')
|
|
api 'org.springframework.data:spring-data-redis'
|
|
testImplementation project(':spring-statemachine-test')
|
|
testImplementation(testFixtures(project(':spring-statemachine-data-common')))
|
|
testImplementation(testFixtures(project(':spring-statemachine-core')))
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testRuntimeOnly 'org.apache.commons:commons-pool2'
|
|
testRuntimeOnly 'redis.clients:jedis'
|
|
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
testRuntimeOnly 'org.springframework.boot:spring-boot-starter-web'
|
|
testImplementation 'io.projectreactor.tools:blockhound'
|
|
}
|