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)
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.juuxel.loom-quiltflower") version "1.11.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.juuxel.loom-quiltflower:io.github.juuxel.loom-quiltflower.gradle.plugin:1.11.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.juuxel.loom-quiltflower") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.juuxel.loom-quiltflower:io.github.juuxel.loom-quiltflower.gradle.plugin:1.11.0") } } apply(plugin = "io.github.juuxel.loom-quiltflower")
- Applying plugins to all subprojects .