搜索 Gradle 插件

io.github.gunpowder

所有者: Martmists

GunpowderPlugin 导入并配置了开发 Gunpowder 所需的依赖。

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

来源: https://github.com/gunpowder-mc/GunpowderPlugin

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

plugins {
  id "io.github.gunpowder" version "1.0.7"
}

使用 旧插件应用

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

apply plugin: "io.github.gunpowder"

了解如何将插件应用于子项目