2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 23:37:12 -07:00
rife2-hello/build-logic/build.gradle.kts

27 lines
421 B
Kotlin

plugins {
`java-gradle-plugin`
}
repositories {
mavenCentral()
}
dependencies {
gradleApi()
}
tasks {
withType<JavaCompile> {
options.isDeprecation = true
options.compilerArgs.add("-Xlint:unchecked")
}
}
gradlePlugin {
plugins {
create("rife2") {
id = "com.uwyn.rife2"
implementationClass = "com.uwyn.rife2.gradle.Rife2Plugin"
}
}
}