io.github.opencubicchunks.stirrin
Owner: Tom Martin
Compile time application of Mixin interfaces
https://github.com/OpenCubicChunks/stirrin
Sources: https://github.com/OpenCubicChunks/stirrin
Version 1.3.4 (latest)
1.3.4
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"