The gradle setup section does not mention some dependencies, can corrupt gradle cache
ShayTheSquiddog opened this issue ยท 1 comments
Minecraft Version
1.20.x
Forge Version
47.4.9
Vampirism Version
1.10.13
Werewolves Version
2.0.2.7
What happened?
The Gradle Setup section is missing Guide API and JEI dependencies as being required in the dev environment. If it's missing, this can easily lead to corruption of gradle cache files
this means that
dependencies {
compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}")
compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}")
runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}")
implementation fg.deobf("de.maxanier.guideapi:Guide-API-VP:${minecraft_version}-${guideAPI_version}")
}
should be included in the setup
and on what commit did you find this?
With only that as dependencies the whole project can not compile.
it should look like this for forge or this for neoforge