com.github.fudge.forgedflowerloom
Owner: Natan Lifshitz
Provides the ForgedFlower decompiler to Fabric-Loom environments
https://github.com/natanfudge/ForgedFlowerLoom
Sources: https://github.com/natanfudge/ForgedFlowerLoom
Version 2.0.0 (latest)
2.0.0
Created 20 June 2020.
Provides the ForgedFlower decompiler to Fabric-Loom environments
Using the plugins DSL:
plugins {
id("com.github.fudge.forgedflowerloom") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.fudge:forgedflowerloom:2.0.0")
}
}
apply(plugin = "com.github.fudge.forgedflowerloom")
Using the plugins DSL:
plugins {
id "com.github.fudge.forgedflowerloom" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.fudge:forgedflowerloom:2.0.0"
}
}
apply plugin: "com.github.fudge.forgedflowerloom"