-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
bugSomething isn't workingSomething isn't workingpriority:majorMajor loss of functionMajor loss of function
Description
Pablo León opened MJARSIGNER-54 and commented
Some jars in the <archiveDirectory> are signed twice, while others are not signed at all. Here is the pom snipped with the plugin configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign</id>
<phase>prepare-package</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<alias>mirthconnect</alias>
<sigfile>SERVER</sigfile>
<keystore>src/main/resources/keystore.jks</keystore>
<keypass>xxxxx</keypass>
<storepass>xxxxx</storepass>
<storetype>JCEKS</storetype>
<tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa>
<arguments>
<argument>-sigalg</argument><argument>SHA256withRSA</argument>
</arguments>
<verbose>true</verbose>
<archiveDirectory>target/jars</archiveDirectory>
</configuration>
</execution>
</executions>
</plugin>Affects: 1.4
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpriority:majorMajor loss of functionMajor loss of function