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-27 02:26:06 +01:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.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-02-27 02:26:06 +01:00
|
|
|
implementation 'ftbsc:lll:0.2.1'
|
|
|
|
implementation 'org.ow2.asm:asm-commons:9.4'
|
2023-02-24 03:03:23 +01:00
|
|
|
}
|