Search Gradle plugins

Version 1.3.4 (latest)

Created 03 April 2023.

Compile time application of Mixin interfaces

Using the plugins DSL:

plugins {
  id("io.github.opencubicchunks.stirrin") version "1.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.opencubicchunks:stirrin:1.3.4")
  }
}

apply(plugin = "io.github.opencubicchunks.stirrin")

Using the plugins DSL:

plugins {
  id "io.github.opencubicchunks.stirrin" version "1.3.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.opencubicchunks:stirrin:1.3.4"
  }
}

apply plugin: "io.github.opencubicchunks.stirrin"

Learn how to apply plugins to subprojects