mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 05:49:19 +01:00
29 lines
No EOL
603 B
Groovy
29 lines
No EOL
603 B
Groovy
import org.gradle.internal.jvm.Jvm
|
|
|
|
plugins {
|
|
id 'java-gradle-plugin'
|
|
}
|
|
|
|
group 'ftbsc.lll.processor'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation files(Jvm.current().toolsJar)
|
|
implementation 'com.squareup:javapoet:1.13.0'
|
|
implementation 'ftbsc:lll:0.2.0'
|
|
implementation 'org.ow2.asm:asm-commons:9.4'
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("lillero-processor") {
|
|
id = "ftbsc.lll.processor"
|
|
implementationClass = "ftbsc.lll.processor.Plugin"
|
|
}
|
|
}
|
|
} |