Search Gradle plugins

Version 1.0.5 (latest)

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"

Learn how to apply plugins to subprojects