搜索 Gradle 插件

com.elypia.commandler

所有者: Elypia CIC

使用 Commandler 作为构建步骤执行预/后编译步骤,而不是在运行时。

https://elyphia.com/

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

版本 1.0.0 (最新版)

1.0.0

创建日期 2019年7月5日。

使用 Commandler 作为构建步骤执行预/后编译步骤,而不是在运行时。

使用 插件 DSL

plugins {
  id("com.elypia.commandler") version "1.0.0"
}

使用 旧插件应用

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

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

使用 插件 DSL

plugins {
  id "com.elypia.commandler" version "1.0.0"
}

使用 旧插件应用

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

apply plugin: "com.elypia.commandler"

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