aboutsummaryrefslogtreecommitdiff
path: root/lllars/llltranspiler/build.gradle.kts
blob: b8ecb0c1593459ce38038c84291079399e031590 (plain) (blame)
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
plugins {
    kotlin("jvm") version "2.1.0"
    kotlin("plugin.serialization") version "2.1.0"
}

group = "me.any"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    testImplementation(kotlin("test"))
    implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0-RC")

}


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