io.github.juuxel.loom-vineflower
Owner: Juuz
Adds the Vineflower decompiler to projects using Fabric Loom (or its forks) for Minecraft mod development.
https://github.com/Juuxel/loom-vineflower
Sources: https://github.com/Juuxel/loom-vineflower
Version 1.11.0 (latest)
Created 11 July 2023.
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-vineflower") 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-vineflower:io.github.juuxel.loom-vineflower.gradle.plugin:1.11.0") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.juuxel.loom-vineflower") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.juuxel.loom-vineflower:io.github.juuxel.loom-vineflower.gradle.plugin:1.11.0") } } apply(plugin = "io.github.juuxel.loom-vineflower")
- Applying plugins to all subprojects .