PaperMC / paperweight

Gradle build system plugin for Paper and Paper forks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Renaming result jar

DeeChael opened this issue · comments

Is there any option for reobfJar task like archiveClassifier in shadow plugin?
I want to change the dev suffix.

Or if is there any way to make shadowJar shade the reobfJar jar FROM ANOTHER MODULE because I wanna shade the reobf jar from another module (All under one same parent module)

The nature of your OR question is suspect that you're wanting to change the dev suffix for the wrong reason, we do not generlly recommend messing with the classifiers as it generally won't solve anything

if you want to consume the reobfuscated jar from another module, then you would specify the "reobf" configuration in the project() declaration

The nature of your OR question is suspect that you're wanting to change the dev suffix for the wrong reason, we do not generlly recommend messing with the classifiers as it generally won't solve anything

if you want to consume the reobfuscated jar from another module, then you would specify the "reobf" configuration in the project() declaration

done, thanks