Search Gradle plugins

Version 1.5 (latest)

Created 20 September 2023.

Preprocessor/JCP inspired multi-version environment manager

Using the plugins DSL:

plugins {
  id("io.shcm.shsupercm.fabric.stonecutter") version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.shcm.shsupercm.fabric:Stonecutter:1.5")
  }
}

apply(plugin = "io.shcm.shsupercm.fabric.stonecutter")

Using the plugins DSL:

plugins {
  id "io.shcm.shsupercm.fabric.stonecutter" version "1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.shcm.shsupercm.fabric:Stonecutter:1.5"
  }
}

apply plugin: "io.shcm.shsupercm.fabric.stonecutter"

Learn how to apply plugins to subprojects