搜索Gradle插件

版本 1.3.2(最新版)

1.3.2

创建于 2023年5月25日。

配置仅针对JVM的MiniGDX库。此用法主要用于MiniGDX贡献者。

使用 plugins DSL

plugins {
  id("com.github.minigdx.gradle.plugin.developer.mpp") version "1.3.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.minigdx:developer-plugin:1.3.2")
  }
}

apply(plugin = "com.github.minigdx.gradle.plugin.developer.mpp")

使用 plugins DSL

plugins {
  id "com.github.minigdx.gradle.plugin.developer.mpp" version "1.3.2"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.minigdx:developer-plugin:1.3.2"
  }
}

apply plugin: "com.github.minigdx.gradle.plugin.developer.mpp"

学习如何将插件应用于子项目