chore: now annotationprocessor itself tells you what it needs in the classpath
This commit is contained in:
parent
8127c30fc7
commit
f243885ac9
2 changed files with 2 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'eclipse'
|
id 'eclipse'
|
||||||
alias libs.plugins.forgeGradle;
|
alias libs.plugins.forgeGradle
|
||||||
alias libs.plugins.gitVersion;
|
alias libs.plugins.gitVersion
|
||||||
alias libs.plugins.checkerFramework
|
alias libs.plugins.checkerFramework
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,8 +61,6 @@ dependencies {
|
||||||
implementation libs.lillero
|
implementation libs.lillero
|
||||||
implementation libs.lilleroProcessor
|
implementation libs.lilleroProcessor
|
||||||
implementation libs.autoServiceAnnotations
|
implementation libs.autoServiceAnnotations
|
||||||
annotationProcessor libs.javaPoet
|
|
||||||
annotationProcessor libs.lillero
|
|
||||||
annotationProcessor libs.lilleroProcessor
|
annotationProcessor libs.lilleroProcessor
|
||||||
annotationProcessor libs.autoService
|
annotationProcessor libs.autoService
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,6 @@ gitVersion = "0.13.0"
|
||||||
minecraft = "1.16.5"
|
minecraft = "1.16.5"
|
||||||
forge = "1.16.5-36.2.34"
|
forge = "1.16.5-36.2.34"
|
||||||
autoService = "1.0.1"
|
autoService = "1.0.1"
|
||||||
javaPoet = "1.13.0"
|
|
||||||
lillero = "0.3.0"
|
lillero = "0.3.0"
|
||||||
lilleroProcessor = "0.2.1"
|
lilleroProcessor = "0.2.1"
|
||||||
checkerFramework = "0.6.24"
|
checkerFramework = "0.6.24"
|
||||||
|
@ -18,6 +17,5 @@ checkerFramework = { id = "org.checkerframework", version.ref = "checkerFramewor
|
||||||
minecraftForge = { group = "net.minecraftforge", name = "forge", version.ref = "forge" }
|
minecraftForge = { group = "net.minecraftforge", name = "forge", version.ref = "forge" }
|
||||||
autoService = { group = "com.google.auto.service", name = "auto-service", version.ref = "autoService" }
|
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" }
|
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" }
|
lillero = { group = "ftbsc", name = "lll", version.ref = "lillero" }
|
||||||
lilleroProcessor = { group = "ftbsc.lll", name = "processor", version.ref = "lilleroProcessor" }
|
lilleroProcessor = { group = "ftbsc.lll", name = "processor", version.ref = "lilleroProcessor" }
|
Loading…
Reference in a new issue