What is Jarsigner ?

You can read more about Jarsigner here.

[top]

Is it possible to sign a single archive file ?

Signing or verifying a Java archive which is neither a project artifact nor an attached artifact can be done by using the archive parameter of the sign and verify goals. If this parameter is set, the goals will process the specified archive and will not process any project artifacts.

[top]

Where are releases deployed to ?

Releases are deployed to the MJARSIGNER release repository and are available for download from there. Please see group net.sourceforge.mjarsigner.

<repository>
  <id>http://mjarsigner.sourceforge.net/maven2/releases</id>
  <url>http://mjarsigner.sourceforge.net/maven2/releases</url>
  <releases>
    <enabled>true</enabled>
  </releases>
  <snapshots>
    <enabled>false</enabled>
  </snapshots>
</repository>
      
[top]

Where are snapshots deployed to ?

Development snapshots are deployed to the MJARSIGNER snapshot repository and are available for download from there. Please see group net.sourceforge.mjarsigner.

<repository>
  <id>http://mjarsigner.sourceforge.net/maven2/snapshots</id>
  <url>http://mjarsigner.sourceforge.net/maven2/snapshots</url>
  <releases>
    <enabled>false</enabled>
  </releases>
  <snapshots>
    <enabled>true</enabled>
  </snapshots>
</repository>
      
[top]