-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
26 lines (26 loc) · 641 Bytes
/
build.gradle.kts
File metadata and controls
26 lines (26 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
plugins {
kotlin("jvm") version "2.0.21"
kotlin("plugin.serialization") version "2.0.21"
application
}
group = "com.halilozel"
version = "2026.1"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
}
kotlin {
jvmToolchain(17)
}
application {
mainClass.set("modern2026.Modern2026RunnerKt")
}
tasks.test {
useJUnitPlatform()
}