net.minecraftforge.gradlejarsigner
Owner: Blake Hanson
Wrapper for Ant signjar, allowing proper task caching
https://github.com/MinecraftForge/GradleJarSigner
Sources: https://github.com/MinecraftForge/GradleJarSigner.git
Version 1.0.5 (latest)
Created 16 November 2023.
Wrapper for Ant signjar, allowing proper task caching
Add this plugin to your build using the plugins DSL:
plugins {
id("net.minecraftforge.gradlejarsigner") version "1.0.5"
}
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.minecraftforge.gradlejarsigner:net.minecraftforge.gradlejarsigner.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("net.minecraftforge.gradlejarsigner") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.minecraftforge.gradlejarsigner:net.minecraftforge.gradlejarsigner.gradle.plugin:1.0.5") } } apply(plugin = "net.minecraftforge.gradlejarsigner")
- Applying plugins to all subprojects .