- Switch propdeps-plugin to custom OptionalDependenciesPlugin - Switch io.spring.dependency-management with custom spring-statemachine-platform project - Use proper gradle publication system - Switch to testfixtures from a custom tests jar - Migrate to spring-asciidoctor-backends - Generic changes to bom/starter create as we now use publications
18 lines
319 B
Groovy
18 lines
319 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
optionalDependenciesPlugin {
|
|
id = "org.springframework.statemachine.optional-dependencies"
|
|
implementationClass = "org.springframework.statemachine.gradle.OptionalDependenciesPlugin"
|
|
}
|
|
}
|
|
}
|