搜索 Gradle 插件

org.elypia.commandler

所有者: Elypia CIC

发布编译后工具以获得更好的 Commandler 体验。

https://elypia.org/

源代码: https://gitlab.com/Elypia/commandler-gradle-plugin

版本 1.3.0 (最新版)

1.3.0

创建于 2020年7月22日。

发布编译后工具以获得更好的 Commandler 体验。

使用 插件 DSL

plugins {
  id("org.elypia.commandler") version "1.3.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.elypia.commandler:commandler:1.3.0")
  }
}

apply(plugin = "org.elypia.commandler")

使用 插件 DSL

plugins {
  id "org.elypia.commandler" version "1.3.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.elypia.commandler:commandler:1.3.0"
  }
}

apply plugin: "org.elypia.commandler"

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