Jump to content

noSkill

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by noSkill

  1. Shadow plugin didn't work for me. It gave some errors on launch saying that my module both requires and exports the same packages. My current approach is to add only certain dependencies manually: dependencies { minecraft 'net.minecraftforge:forge:1.18.1-39.0.59' jar { from { configurations.compileClasspath.findAll { (it.name.endsWith('jar') && !it.name.contains('forge')) }.collect { zipTree(it) } } }
  2. Hi. There is a guide for older versions of forge https://mcforge.readthedocs.io/en/1.13.x/gettingstarted/dependencymanagement/ What is recommended way of packaging external dependencies for the latest version? I tried adding jars to classpath with -cp on command line, but it also causes issues.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.