mirror of
https://github.com/dnpm-dip/mv64e-mtb-dto-java.git
synced 2025-07-01 10:12:55 +00:00
27 lines
596 B
Groovy
27 lines
596 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
group = 'dev.pcvolkmer.mv64e'
|
|
version = '0.1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
api 'com.fasterxml.jackson.core:jackson-databind:2.12.7.2'
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.38")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.38")
|
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.38")
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.38")
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |