1
0
forked from numbers/Ornot

init and unit tests

This commit is contained in:
2025-12-19 16:58:21 -06:00
commit b178b31cbf
11 changed files with 500 additions and 0 deletions

20
build.gradle.kts Normal file
View File

@@ -0,0 +1,20 @@
plugins {
id("java")
}
group = "com.softwaresmyth"
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()
}