summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts28
1 files changed, 28 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..e4816f2
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,28 @@
+plugins {
+ kotlin("jvm") version "1.9.22"
+}
+
+group = "org.example"
+version = "1.0-SNAPSHOT"
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ testImplementation("org.jetbrains.kotlin:kotlin-test")
+ implementation("com.google.code.gson:gson:2.10.1")
+}
+
+tasks.test {
+ useJUnitPlatform()
+}
+kotlin {
+ jvmToolchain(17)
+ sourceSets.all {
+ languageSettings {
+ languageVersion = "2.0"
+ enableLanguageFeature("BreakContinueInInlineLambdas")
+ }
+ }
+} \ No newline at end of file