mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-10 05:59:18 +01:00
18 lines
382 B
Groovy
18 lines
382 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'ftbsc.lll.processor'
|
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
}
|
|
|
|
//TODO: figure out how to make annotationProcessor inherit its dependencies
|
|
dependencies {
|
|
implementation 'com.squareup:javapoet:1.13.0'
|
|
implementation 'ftbsc:lll:0.2.2'
|
|
}
|