You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by Swen <sw...@aol.com> on 2014/09/10 18:37:01 UTC

Re: Maven Jar Signer Timestamp authority option

For accomplishing this task, your configuration can be like this        
<plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jarsigner-plugin</artifactId>
          <version>1.2</version>
          <executions>
            <execution>
              <id>sign webcontent jars</id>
              <phase>prepare-package</phase>
              <goals>
                <goal>sign</goal>
              </goals>
            </execution>
          </executions>
          <configuration>
           
<archiveDirectory>${project.build.directory}/projectname-webcontent/applets</archiveDirectory>
            <includes>
              <include>*.jar</include>
            </includes>
            <keystore>Keystore</keystore>
            <alias>alias</alias>
            <storepass>pass</storepass>
            <arguments>
              <argument>-tsa</argument>
              <argument>http://tsa.tecxoft.com/test</argument>
            </arguments>
          </configuration>
        </plugin>



--
View this message in context: http://maven.40175.n5.nabble.com/Maven-Jar-Signer-Timestamp-authority-option-tp4396564p5804467.html
Sent from the Maven Developers mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org