1
0
mirror of https://github.com/dnpm-dip/mv64e-mtb-dto-java.git synced 2025-07-01 18:22:54 +00:00
Files
mv64e-mtb-dto-java/build.gradle
2024-07-09 16:38:24 +02:00

21 lines
362 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'
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}