搜索 Gradle 插件

io.github.juuxel.loom-vineflower

所有者: Juuz

为使用 Fabric Loom(或其分支)进行 Minecraft 模组开发的工程添加 Vineflower 反编译器。

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

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

版本 1.11.0(最新版)

1.11.0

创建于 2023 年 7 月 11 日。

为使用 Fabric Loom(或其分支)进行 Minecraft 模组开发的工程添加 Vineflower 反编译器。

使用插件 DSL

plugins {
  id("io.github.juuxel.loom-vineflower") version "1.11.0"
}

使用旧插件应用

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

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

使用插件 DSL

plugins {
  id "io.github.juuxel.loom-vineflower" version "1.11.0"
}

使用旧插件应用

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

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

了解如何将插件应用于子项目