Initial commit

This commit is contained in:
2023-10-08 16:37:48 +03:00
commit 0550a1465b
52 changed files with 4294 additions and 0 deletions

19
build.gradle.kts Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id("java")
}
group = "org.lumijiez"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.9.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}