io.github.pacifistmc.forgix
Owner: Ran
This plugin merges Fabric (also Quilt) & Forge jars into a single jar.
Sources: https://github.com/PacifistMC/Forgix
Version 1.2.5
1.2.5
Created 14 August 2022.
This plugin merges Fabric (also Quilt) & Forge jars into a single jar.
Using the plugins DSL:
plugins {
id("io.github.pacifistmc.forgix") version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.pacifistmc.forgix:Forgix:1.2.5")
}
}
apply(plugin = "io.github.pacifistmc.forgix")
Using the plugins DSL:
plugins {
id "io.github.pacifistmc.forgix" version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.pacifistmc.forgix:Forgix:1.2.5"
}
}
apply plugin: "io.github.pacifistmc.forgix"