summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorEdoardo La Greca2025-06-15 19:14:56 +0200
committerEdoardo La Greca2025-06-15 19:14:56 +0200
commit02d16866678ab48458edb7889aa83e25470db855 (patch)
tree23364c243a85072e058e66a66725ae4a65ed5569 /build.gradle.kts
parent9766c5eb6ab200660bb4615c6183fff8020ddb8a (diff)
add gradle stuff
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..c9c07e2
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,21 @@
+plugins {
+ kotlin("jvm") version "2.1.20"
+}
+
+group = "net.edolg"
+version = "1.0-SNAPSHOT"
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ testImplementation(kotlin("test"))
+}
+
+tasks.test {
+ useJUnitPlatform()
+}
+kotlin {
+ jvmToolchain(21)
+} \ No newline at end of file