2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 07:27:12 -07:00
rife2-hello/build-logic/build.gradle.kts
2023-03-05 11:22:28 +01:00

20 lines
286 B
Kotlin

plugins {
`java-gradle-plugin`
}
repositories {
mavenCentral()
}
dependencies {
gradleApi()
}
gradlePlugin {
plugins {
create("rife2") {
id = "com.uwyn.rife2"
implementationClass = "com.uwyn.rife2.gradle.Rife2Plugin"
}
}
}