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.11.0 (latest)
1.11.0
Created 11 July 2023.
Deprecated alias for `io.github.juuxel.loom-vineflower`.
Adds the Vineflower 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.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.juuxel:loom-vineflower:1.11.0")
}
}
apply(plugin = "io.github.juuxel.loom-quiltflower")
Using the plugins DSL:
plugins {
id "io.github.juuxel.loom-quiltflower" version "1.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.juuxel:loom-vineflower:1.11.0"
}
}
apply plugin: "io.github.juuxel.loom-quiltflower"