net.jsign
Owner:
Emmanuel Bourg
Sign and timestamp Windows executable files, Microsoft Installers (MSI), Cabinet files (CAB), Catalog files (CAT), Windows packages (APPX/MSIX) or scripts (PowerShell, VBScript, JScript, WSF)
https://ebourg.github.io/jsign/
Sources: https://github.com/ebourg/jsign
Version 7.4 (latest)
Created 24 October 2025.
Sign and timestamp Windows executable files, Microsoft Installers (MSI), Cabinet files (CAB), Catalog files (CAT), Windows packages (APPX/MSIX), Microsoft Dynamics 365 extension packages, NuGet packages and scripts (PowerShell, VBScript, JScript, WSF)
Add this plugin to your build using the plugins DSL:
plugins {
id("net.jsign") version "7.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("net.jsign:net.jsign.gradle.plugin:7.4") }It can then be applied in the precompiled script plugin:plugins { id("net.jsign") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.jsign:net.jsign.gradle.plugin:7.4") } } apply(plugin = "net.jsign") - Applying plugins to all subprojects .