Initial commit

This commit is contained in:
Jan
2025-12-02 10:05:34 +01:00
commit aacf671d49
22 changed files with 435 additions and 0 deletions

33
build.gradle Normal file
View File

@@ -0,0 +1,33 @@
plugins {
id 'java'
}
group = 'hhn.temp.project'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
sourceSets {
main {
java {
srcDir("src")
}
}
test {
java {
srcDir("test")
}
}
}
test {
useJUnitPlatform()
}