26 lines
554 B
Groovy
26 lines
554 B
Groovy
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.assertj:assertj-core:3.11.1'
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
optionalDependenciesPlugin {
|
|
id = "org.springframework.build.optional-dependencies"
|
|
implementationClass = "org.springframework.build.optional.OptionalDependenciesPlugin"
|
|
}
|
|
testSourcesPlugin {
|
|
id = "org.springframework.build.test-sources"
|
|
implementationClass = "org.springframework.build.testsources.TestSourcesPlugin"
|
|
}
|
|
}
|
|
}
|