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

group = "net.edolg"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

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

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