aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 75a29267b293e73580dfb87d5b800759a995f636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
plugins {
    kotlin("jvm") version (System.getenv("KOTLIN_VERSION") ?: "2.0.20")
}

group = "moe.nea"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    testImplementation(kotlin("test"))
}

tasks.test {
    useJUnitPlatform()
}
kotlin {
    jvmToolchain(17)
}