1
0
mirror of https://github.com/dnpm-dip/mv64e-mtb-dto-java.git synced 2025-07-01 18:22:54 +00:00

Initial commit

This commit is contained in:
2024-07-09 16:36:24 +02:00
commit c7386f1dc2
104 changed files with 3676 additions and 0 deletions

21
build.gradle Normal file
View File

@ -0,0 +1,21 @@
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()
}