- 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
28 lines
1.1 KiB
Groovy
28 lines
1.1 KiB
Groovy
plugins {
|
|
id 'org.springframework.statemachine.module'
|
|
}
|
|
|
|
description = 'Spring Statemachine Core'
|
|
|
|
dependencies {
|
|
management platform(project(":spring-statemachine-platform"))
|
|
api('org.springframework:spring-tx')
|
|
api('org.springframework:spring-messaging')
|
|
api('org.springframework:spring-context')
|
|
api('io.projectreactor:reactor-core')
|
|
optional 'org.springframework.security:spring-security-core'
|
|
compileOnly 'com.google.code.findbugs:jsr305'
|
|
testImplementation 'org.springframework:spring-web'
|
|
testImplementation 'org.springframework:spring-webmvc'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
testImplementation 'org.awaitility:awaitility'
|
|
testImplementation 'org.springframework.security:spring-security-config'
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
|
testImplementation 'io.projectreactor.tools:blockhound'
|
|
testImplementation 'jakarta.servlet:jakarta.servlet-api'
|
|
testImplementation 'org.assertj:assertj-core'
|
|
testFixturesImplementation 'org.assertj:assertj-core'
|
|
testFixturesImplementation 'io.projectreactor:reactor-test'
|
|
}
|