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)
1.0.5
Created 16 November 2023.
Wrapper for Ant signjar, allowing proper task caching
Using the plugins DSL:
plugins {
id("net.minecraftforge.gradlejarsigner") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.minecraftforge:gradlejarsigner:1.0.5")
}
}
apply(plugin = "net.minecraftforge.gradlejarsigner")
Using the plugins DSL:
plugins {
id "net.minecraftforge.gradlejarsigner" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.minecraftforge:gradlejarsigner:1.0.5"
}
}
apply plugin: "net.minecraftforge.gradlejarsigner"