initial commit

This commit is contained in:
2024-05-20 19:39:39 +02:00
commit 7eb9592784
8 changed files with 513 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
plugins {
id 'java'
}
group = 'de.srsoftware'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}