Search Gradle plugins

io.github.gunpowder

GunpowderPlugin imports and configures the required dependencies to develop for Gunpowder.

https://github.com/gunpowder-mc/

Sources: https://github.com/gunpowder-mc/GunpowderPlugin

Using the plugins DSL:

plugins {
  id("io.github.gunpowder") version "0.1.8-dev.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gunpowder:gunpowder-plugins:0.1.8-dev.6")
  }
}

apply(plugin = "io.github.gunpowder")

Using the plugins DSL:

plugins {
  id "io.github.gunpowder" version "0.1.8-dev.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gunpowder:gunpowder-plugins:0.1.8-dev.6"
  }
}

apply plugin: "io.github.gunpowder"

Learn how to apply plugins to subprojects