2023-02-24 03:03:23 +01:00
|
|
|
plugins {
|
2023-02-26 21:22:58 +01:00
|
|
|
id 'java'
|
2023-02-24 03:03:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
group 'ftbsc.lll.processor'
|
|
|
|
|
2023-02-28 21:58:12 +01:00
|
|
|
java.toolchain.languageVersion = JavaLanguageVersion.of(8)
|
|
|
|
|
2023-02-24 03:03:23 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url = 'https://maven.fantabos.co' }
|
|
|
|
}
|
|
|
|
|
2023-02-27 02:26:06 +01:00
|
|
|
//TODO: figure out how to make annotationProcessor inherit its dependencies
|
2023-02-24 03:03:23 +01:00
|
|
|
dependencies {
|
|
|
|
implementation 'com.squareup:javapoet:1.13.0'
|
2023-03-01 21:31:11 +01:00
|
|
|
implementation 'ftbsc:lll:0.3.0'
|
2023-02-28 21:58:12 +01:00
|
|
|
}
|