Skip to content

Instantly share code, notes, and snippets.

@AlexiyOrlov
Created June 13, 2019 11:37
Show Gist options
  • Save AlexiyOrlov/f4cdba86225c4f405345f8af1f19d77a to your computer and use it in GitHub Desktop.
Save AlexiyOrlov/f4cdba86225c4f405345f8af1f19d77a to your computer and use it in GitHub Desktop.
Gradle task configuration for mod decompilation. "remapMcSources" is final task here.
deobfMcSRG{
setFailOnAtError(false)
setInJar('lib/Thaumcraft-1.12.2-6.1.BETA26.jar')
setOutJar('lib/TC-1.jar')
}
decompileMc{
setInJar('lib/TC-1.jar')
setOutJar('lib/TC-2.jar')
}
fixMcSources{
setInJar('lib/TC-2.jar')
setOutJar('lib/TC-3.jar')
}
remapMcSources{
setInJar('lib/TC-3.jar')
setOutJar('lib/TC-4.jar')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment