24 lines
No EOL
561 B
Text
24 lines
No EOL
561 B
Text
plugins {
|
|
id("java")
|
|
id("io.freefair.lombok") version "8.10"
|
|
}
|
|
|
|
group = "dev.exhq"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
implementation("com.fasterxml.jackson.core:jackson-annotations:2.18.0-rc1")
|
|
implementation("com.fasterxml.jackson.core:jackson-core:2.18.0-rc1")
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.0-rc1")
|
|
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |