shevek / jarjar

Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution.
Apache License 2.0
735 stars 93 forks source link

Add ability to repackage project JAR #1

Open bspeice opened 9 years ago

bspeice commented 9 years ago

Thanks so much for this project! It's been awesome so far. The only feature I could use that doesn't seem to be present is repackaging JARs from local projects. I.e., the following fails:

compile jarjar.repackage {
    from project(':mylocalproject')
    classRename 'original.name.**', 'new.name.@1'
}

Is it possible for this to be added?