first commit

This commit is contained in:
kento2 2026-02-14 10:54:24 +01:00
commit f0ea9603d5
14 changed files with 501 additions and 0 deletions

20
core-api/build.gradle.kts Normal file
View file

@ -0,0 +1,20 @@
plugins {
id("java")
}
group = "de.kentoj.scrow"
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")
}
tasks.test {
useJUnitPlatform()
}