io.github.gunpowder
Owner: Martmists
GunpowderPlugin imports and configures the required dependencies to develop for Gunpowder.
https://github.com/gunpowder-mc/
Sources: https://github.com/gunpowder-mc/GunpowderPlugin
Version 1.0.7 (latest)
1.0.7
Created 19 July 2022.
GunpowderPlugin imports and configures the required dependencies to develop for Gunpowder.
Using the plugins DSL:
plugins {
id("io.github.gunpowder") version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.gunpowder:gunpowder-plugins:1.0.7")
}
}
apply(plugin = "io.github.gunpowder")
Using the plugins DSL:
plugins {
id "io.github.gunpowder" version "1.0.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.gunpowder:gunpowder-plugins:1.0.7"
}
}
apply plugin: "io.github.gunpowder"