I'm writing a tiny library which uses a couple of dependencies.
One of them is the org.json
library.
I want to shade only this org.json
library by including the sources in my own jar and relocating them to another repackaged
package.
I had a look at the Gradle Shadow plugin but it creates an -all
jar.
I just want the normal jar and only the org.json
lib to be relocated.
Is this possible?
Alternative is just copying those classes to my project and checking them in source control.