aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
blob: 5939d89fdd22ec9018f67fded063c332d30004cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
    `kotlin-dsl`
}

group = "ca.allanwang"

gradlePlugin {
    plugins {
        register("kau-plugin") {
            id = "ca.allanwang.kau"
            implementationClass = "ca.allanwang.kau.KauPlugin"
        }
    }
}

repositories {
    mavenCentral()
}