You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
554 B
25 lines
554 B
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" |
|
} |
|
} |
|
}
|
|
|