summaryrefslogtreecommitdiff
path: root/lib/build.gradle.kts
blob: 5d8bf0f8b0b713ce95eba16d22a1430b9c9dab39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
    kotlin("jvm")
    `java-library`
}

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

repositories {
    mavenCentral()
}

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

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