-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (32 loc) · 878 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
34 lines (32 loc) · 878 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
27
28
29
30
31
32
33
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()
}
tasks.register<JavaExec>("runLessons") {
group = "application"
description = "Runs the root lessons index runner (LessonsRunnerKt)."
classpath = sourceSets.main.get().runtimeClasspath
mainClass.set("LessonsRunnerKt")
}