chore: now annotationprocessor itself tells you what it needs in the classpath

This commit is contained in:
zaaarf 2023-03-02 16:54:21 +01:00
parent 8127c30fc7
commit f243885ac9
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C
2 changed files with 2 additions and 6 deletions

View file

@ -1,8 +1,8 @@
plugins {
id 'java'
id 'eclipse'
alias libs.plugins.forgeGradle;
alias libs.plugins.gitVersion;
alias libs.plugins.forgeGradle
alias libs.plugins.gitVersion
alias libs.plugins.checkerFramework
}
@ -61,8 +61,6 @@ dependencies {
implementation libs.lillero
implementation libs.lilleroProcessor
implementation libs.autoServiceAnnotations
annotationProcessor libs.javaPoet
annotationProcessor libs.lillero
annotationProcessor libs.lilleroProcessor
annotationProcessor libs.autoService
}

View file

@ -4,7 +4,6 @@ gitVersion = "0.13.0"
minecraft = "1.16.5"
forge = "1.16.5-36.2.34"
autoService = "1.0.1"
javaPoet = "1.13.0"
lillero = "0.3.0"
lilleroProcessor = "0.2.1"
checkerFramework = "0.6.24"
@ -18,6 +17,5 @@ checkerFramework = { id = "org.checkerframework", version.ref = "checkerFramewor
minecraftForge = { group = "net.minecraftforge", name = "forge", version.ref = "forge" }
autoService = { group = "com.google.auto.service", name = "auto-service", version.ref = "autoService" }
autoServiceAnnotations = { group = "com.google.auto.service", name = "auto-service-annotations", version.ref = "autoService" }
javaPoet = { group = "com.squareup", name = "javapoet", version.ref = "javaPoet" }
lillero = { group = "ftbsc", name = "lll", version.ref = "lillero" }
lilleroProcessor = { group = "ftbsc.lll", name = "processor", version.ref = "lilleroProcessor" }