I managed to create main jar, copy dependencies to a single directory, the only step left is to sign all jars.
I can sign my own produced jar as a part of jar:sign, but how do i sign dependencies?
Thanks
|
|
|
Here are a couple of options:
|
||||
|
|
|
add to plug-in config |
|||
|
|
If you are using
If you want to sign both, I don't know how to do that with |
||||
|
|
|
One can also create a single JAR using the maven-assembly-plugin. Together with the other suggestion by Eric Anderson (of signing another JAR) one can then sign this assembled JAR (instead of the original JAR). Note that the order of the plugin definitions matters here. It is assumed that sign.keystore.file etc are set elsewhere (e.g. in a profile).
|
|||
|
|