aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 6799cc75d2bd06b2ac19d66fe1f3288d0bf933b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
    `kotlin-dsl`
    kotlin("jvm")version "1.8.10"
}
repositories {
    mavenCentral()
}

dependencies {
    implementation("com.google.code.gson:gson:2.10.1")
}

sourceSets.main {
    kotlin {
        srcDir(file("src"))
    }
}