搜索Gradle插件

fr.xpdustry.toxopid

所有者: Finley Experience

Gradle插件,用于部署mindustry模组/插件以及一些构建工具。

https://github.com/Xpdustry/Toxopid

源代码:https://github.com/Xpdustry/Toxopid

版本 3.2.0(最新版)

3.2.0

创建于2023年5月8日。

Gradle插件,用于构建和测试mindustry模组/插件。

使用插件DSL

plugins {
  id("fr.xpdustry.toxopid") version "3.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("fr.xpdustry:toxopid:3.2.0")
  }
}

apply(plugin = "fr.xpdustry.toxopid")

使用插件DSL

plugins {
  id "fr.xpdustry.toxopid" version "3.2.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "fr.xpdustry:toxopid:3.2.0"
  }
}

apply plugin: "fr.xpdustry.toxopid"

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