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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.gunpowder:gunpowder-plugins:0.1.8")
      }
    }
    
    apply(plugin = "io.github.gunpowder")
  • Applying plugins to all subprojects .