io.shcm.shsupercm.fabric.fletchingtable
Owner: SHsuperCM
Additions and automations to fabric-loom
https://github.com/SHsuperCM/FletchingTable
Sources: https://github.com/SHsuperCM/FletchingTable
Version 1.6 (latest)
1.6
Created 26 March 2023.
Additions and automations for fabric-loom
Using the plugins DSL:
plugins {
id("io.shcm.shsupercm.fabric.fletchingtable") version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.shcm.shsupercm.fabric:FletchingTable:1.6")
}
}
apply(plugin = "io.shcm.shsupercm.fabric.fletchingtable")
Using the plugins DSL:
plugins {
id "io.shcm.shsupercm.fabric.fletchingtable" version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.shcm.shsupercm.fabric:FletchingTable:1.6"
}
}
apply plugin: "io.shcm.shsupercm.fabric.fletchingtable"