blob: 27799fb860dc1b19735c23cf83cc9b33185f487c (
plain)
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-dsl`
`java-gradle-plugin`
}
repositories {
this.mavenCentral()
this.mavenLocal()
}
dependencies {
this.implementation("com.google.code.gson:gson:2.10.1")
this.implementation("com.google.guava:guava:33.2.1-jre")
}
sourceSets.main {
this.kotlin.srcDir(file("src"))
}
gradlePlugin {
this.plugins {
this.create("simplePlugin") {
this.id = "at.skyhanni.shared-variables"
this.implementationClass = "at.skyhanni.sharedvariables.NoOp"
}
}
}
|