Hello.
i need to merge an existing jar-file into the output jar using the jar-task.
doing this copies the .jar file into the resulting jar:
jar {
from {
mypath
}
}
i need to basically do what the shadow-plugin does. the problem with the shadow-plugin is, that i need to keep my dependencies (which are getting erased from the POM when using the shadow-plugin)
is there a way to merge the classes of an existing .jar-file into the resulting library using the jar-task?
or: is it possbile to keep dependencies when using the shadow-plugin?
thanks for any hints.
inx