switch to recommended tsa timestamp server and added signing to headless services

This commit is contained in:
Martin Lippert
2019-10-02 08:33:52 +02:00
parent d4d808e8ef
commit 3413a3262d
4 changed files with 30 additions and 3 deletions

View File

@@ -653,7 +653,8 @@
<keystore>${signing.keystore}</keystore>
<storepass>${signing.store.password}</storepass>
<keypass>${signing.key.password}</keypass>
<tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa>
<!-- <tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa> -->
<tsa>http://timestamp.digicert.com</tsa>
</configuration>
</plugin>
</plugins>

View File

@@ -405,7 +405,8 @@
<keystore>${signing.keystore}</keystore>
<storepass>${signing.store.password}</storepass>
<keypass>${signing.key.password}</keypass>
<tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa>
<!-- <tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa> -->
<tsa>http://timestamp.digicert.com</tsa>
</configuration>
</plugin>
<plugin>

View File

@@ -131,6 +131,30 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>sign</id>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>${signing.skip}</skip>
<alias>${signing.alias}</alias>
<keystore>${signing.keystore}</keystore>
<storepass>${signing.store.password}</storepass>
<keypass>${signing.key.password}</keypass>
<!-- <tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa> -->
<tsa>http://timestamp.digicert.com</tsa>
</configuration>
</plugin>
</plugins>
</build>

View File

@@ -137,7 +137,8 @@
<keystore>${signing.keystore}</keystore>
<storepass>${signing.store.password}</storepass>
<keypass>${signing.key.password}</keypass>
<tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa>
<!-- <tsa>http://sha256timestamp.ws.symantec.com/sha256/timestamp</tsa> -->
<tsa>http://timestamp.digicert.com</tsa>
</configuration>
</plugin>