mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-07 17:23:11 +00:00
28 lines
760 B
Groovy
28 lines
760 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
apply from: '../../gradle/coverage/java-coverage.gradle'
|
|
apply from: "../../gradle/versioning/versioning.gradle"
|
|
|
|
dependencies {
|
|
implementation platform(externalDependency.jacksonBom)
|
|
implementation externalDependency.jacksonDataBind
|
|
|
|
implementation externalDependency.slf4jApi
|
|
|
|
// Newer Spring libraries require JDK17 classes, allow for JDK11
|
|
compileOnly externalDependency.springBootAutoconfigureJdk11
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
annotationProcessor externalDependency.lombok
|
|
|
|
testImplementation externalDependency.testng
|
|
testImplementation externalDependency.springBootTest
|
|
}
|
|
|
|
processResources.configure {
|
|
finalizedBy printVersionDetails // always print version details
|
|
}
|