搜索 Gradle 插件

io.github.liplum.mgpp

所有者: Liplum

针对 Java、Kotlin 等的 Mindustry 模组开发。

https://plumygames.github.io/mgpp/

源代码: https://github.com/PlumyGame/mgpp

版本 1.3.2 (最新版)

1.3.2

创建于 2023 年 12 月 12 日。

针对 Java 和 Kotlin 的 Mindustry 模组开发。

使用 插件 DSL

plugins {
  id("io.github.liplum.mgpp") version "1.3.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.liplum.mgpp:main:1.3.2")
  }
}

apply(plugin = "io.github.liplum.mgpp")

使用 插件 DSL

plugins {
  id "io.github.liplum.mgpp" version "1.3.2"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.liplum.mgpp:main:1.3.2"
  }
}

apply plugin: "io.github.liplum.mgpp"

了解如何向子项目应用插件