dev.galacticraft.plugin.addon
Owner:
ROM
Gradle plugin that helps in the development of Galacticraft Addons
https://github.com/TeamGalacticraft/galacticraft-addon-gradle-plugin
Sources: https://github.com/TeamGalacticraft/galacticraft-addon-gradle-plugin
Version 1.0.1 (latest)
Created 07 March 2022.
Gradle plugin that helps in the development of Galacticraft Addons
Using the plugins DSL:
plugins {
id("dev.galacticraft.plugin.addon") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.galacticraft.gradle:galacticraft-addon-gradle-plugin:1.0.1")
}
}
apply(plugin = "dev.galacticraft.plugin.addon")
Using the plugins DSL:
plugins {
id "dev.galacticraft.plugin.addon" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.galacticraft.gradle:galacticraft-addon-gradle-plugin:1.0.1"
}
}
apply plugin: "dev.galacticraft.plugin.addon"