Search Gradle plugins

io.github.juuxel.loom-quiltflower

Owner: Juuz

Adds the Quiltflower decompiler to projects using Fabric Loom (or its forks) for Minecraft mod development.

https://github.com/Juuxel/loom-vineflower

Sources: https://github.com/Juuxel/LoomQuiltflower

Version 1.8.0

Created 27 November 2022.

Adds the Quiltflower decompiler to projects using Fabric Loom (or its forks) for Minecraft mod development.

Using the plugins DSL:

plugins {
  id("io.github.juuxel.loom-quiltflower") version "1.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.juuxel:loom-quiltflower:1.8.0")
  }
}

apply(plugin = "io.github.juuxel.loom-quiltflower")

Using the plugins DSL:

plugins {
  id "io.github.juuxel.loom-quiltflower" version "1.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.juuxel:loom-quiltflower:1.8.0"
  }
}

apply plugin: "io.github.juuxel.loom-quiltflower"

Learn how to apply plugins to subprojects