Skip to content

Commit

Permalink
Release version 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ebourg committed Jun 6, 2023
1 parent c8da154 commit 39e4003
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 31 deletions.
22 changes: 11 additions & 11 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h3 id="ant">Ant Task</h3>
<p>Here is an example showing how the signing works with Ant, using a Java keystore:</p>

<pre class="prettyprint lang-xml">
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-4.2.jar"/>
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-5.0.jar"/>

&lt;jsign file="application.exe"
name="My Application"
Expand Down Expand Up @@ -281,7 +281,7 @@ <h3 id="maven">Maven plugin</h3>
&lt;plugin>
&lt;groupId>net.jsign&lt;/groupId>
&lt;artifactId>jsign-maven-plugin&lt;/artifactId>
&lt;version>4.2&lt;/version>
&lt;version>5.0&lt;/version>
&lt;executions>
&lt;execution>
&lt;goals>
Expand Down Expand Up @@ -369,7 +369,7 @@ <h3 id="gradle">Gradle plugin</h3>
<pre class="prettyprint lang-groovy">
buildscript {
dependencies {
classpath 'net.jsign:jsign-gradle-plugin:4.2'
classpath 'net.jsign:jsign-gradle-plugin:5.0'
}
}

Expand All @@ -393,7 +393,7 @@ <h3 id="gradle">Gradle plugin</h3>
<pre class="prettyprint lang-kotlin">
buildscript {
dependencies {
classpath("net.jsign:jsign-gradle-plugin:4.2")
classpath("net.jsign:jsign-gradle-plugin:5.0")
}
}

Expand All @@ -418,8 +418,8 @@ <h3>Command Line Tool</h3>
<p>Jsign can also be used as a command line tool, packages are available for various systems:</p>

<ul>
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign_4.2_all.deb">DEB package</a> (Debian/Ubuntu)</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2-1.noarch.rpm">RPM package</a> (RedHat/Fedora)</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign_5.0_all.deb">DEB package</a> (Debian/Ubuntu)</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0-1.noarch.rpm">RPM package</a> (RedHat/Fedora)</li>
<li><a href="https://community.chocolatey.org/packages/jsign/">Chocolatey package</a> (Windows)</li>
</ul>

Expand All @@ -429,7 +429,7 @@ <h3>Command Line Tool</h3>

<p>On other systems the command line is invoked by running the jar with:</p>

<pre> java -jar jsign-4.2.jar [OPTIONS] [FILE]...</pre>
<pre> java -jar jsign-5.0.jar [OPTIONS] [FILE]...</pre>

<p>The parameters expected are the same as those used by the Ant task:</p>

Expand Down Expand Up @@ -644,7 +644,7 @@ <h3>API</h3>
&lt;dependency>
&lt;groupId>net.jsign&lt;/groupId>
&lt;artifactId>jsign-core&lt;/artifactId>
&lt;version>4.2&lt;/version>
&lt;version>5.0&lt;/version>
&lt;/dependency>
</pre>

Expand All @@ -670,9 +670,9 @@ <h3>API</h3>
<h3 id="files">Downloads</h3>

<ul>
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign_4.2_all.deb">jsign_4.2_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2-1.noarch.rpm">jsign-4.2-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora/CentOS</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2.jar">jsign-4.2.jar</a> - Jsign Ant Task</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign_5.0_all.deb">jsign_5.0_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0-1.noarch.rpm">jsign-5.0-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0.jar">jsign-5.0.jar</a> - Jsign Ant Task</li>
</ul>


Expand Down
4 changes: 2 additions & 2 deletions jsign-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Ant Task)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Command Line Tool)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Core)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jsign-gradle-plugin/example.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath("net.jsign:jsign-gradle-plugin:4.2")
classpath("net.jsign:jsign-gradle-plugin:5.0")
}
}

Expand Down
4 changes: 2 additions & 2 deletions jsign-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Gradle Plugin)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>jar</packaging>

<repositories>
Expand Down
4 changes: 2 additions & 2 deletions jsign-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Maven Plugin)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>maven-plugin</packaging>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions jsign/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Authenticode signing in Java (Distribution)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign/src/choco/jsign.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>jsign</id>
<version>4.2</version>
<version>5.0</version>
<owners>ebourg</owners>
<title>Jsign</title>
<authors>Emmanuel Bourg</authors>
Expand All @@ -27,7 +27,7 @@
</metadata>
<files>
<file src="tools\**" target="tools" />
<file src="..\..\target\jsign-4.2.jar" target="tools\jsign.jar" />
<file src="..\..\target\jsign-5.0.jar" target="tools\jsign.jar" />
<file src="..\..\..\LICENSE.txt" target="tools\" />
</files>
</package>
6 changes: 3 additions & 3 deletions jsign/src/choco/tools/VERIFICATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ in verifying that this package's contents are trustworthy.
Package can be verified like this:

* Go to https://github.com/ebourg/jsign/releases
* Download the `jsign-<version>.jar` file for the latest release (for example https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2.jar)
* Download the `jsign-<version>.jar` file for the latest release (for example https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0.jar)
* Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
* Compare the checksum with the one of the jsign.jar file embedded in this package.
The expected sha-256 value for the version 4.2 is:
`290377FC4F593256200B3EA4061B7409E8276255F449D4C6DE7833FAF0850CC1`
The expected sha-256 value for the version 5.0 is:
`30CAC7606167487B2584A48FB8102BF958238F6F7118840C677BAADC1D2C4FCA`
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<name>Jsign - Authenticode signing in Java (Parent)</name>
<version>5.0-SNAPSHOT</version>
<version>5.0</version>
<packaging>pom</packaging>

<inceptionYear>2012</inceptionYear>
Expand Down Expand Up @@ -310,7 +310,7 @@

<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<project.build.outputTimestamp>2022-09-19T12:00:00Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2023-06-06T12:00:00Z</project.build.outputTimestamp>
</properties>

</project>

0 comments on commit 39e4003

Please sign in to comment.