aboutsummaryrefslogtreecommitdiff
path: root/examples/playground/build.gradle.kts
blob: 19af4449419d95f9e21046440849d8b6f17cda8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plugins {
    kotlin("jvm")
}

subprojects {
    repositories {
        mavenCentral()
    }

    tasks.withType<JavaCompile>().configureEach {
        sourceCompatibility = JavaVersion.VERSION_1_8.toString()
        targetCompatibility = JavaVersion.VERSION_1_8.toString()
    }
}