summaryrefslogtreecommitdiff
path: root/demo/build.gradle.kts
blob: dd40ae506148c21d33526a4d9ad7f7d27151afeb (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")
}

group = "net.edolg.ninekt"
version = "unspecified"

repositories {
    mavenCentral()
}

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

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