chore: Add initial implementation of move validation logic and game controller

This commit is contained in:
2026-03-21 21:26:37 +01:00
parent 1f1d3b670f
commit a8abd69e0e
20 changed files with 1755 additions and 31 deletions
+11
View File
@@ -31,11 +31,22 @@ tasks.named<JavaExec>("run") {
standardInput = System.`in`
}
tasks.withType<Test> {
testLogging {
events("passed", "failed", "skipped")
showStandardStreams = true
}
}
tasks.test {
finalizedBy(tasks.jacocoTestReport)
}
tasks.jacocoTestReport {
dependsOn(tasks.test)
reports {
xml.required.set(true)
html.required.set(true)
}
}
dependencies {