搜索 Gradle 插件

com.ejiahe.gzb.test-plugin

所有者: george wang

一个帮助您在不同 Gradle 版本上测试插件的插件

https://gitlab.com/ysb33rOrg/gradleTest

源代码: https://gitlab.com/ysb33rOrg/gradleTest.git

版本 1.0.0 (最新)

1.0.0

创建于 2020年3月19日。

一个帮助您在不同 Gradle 版本上测试插件的插件

使用 插件 DSL

plugins {
  id("com.ejiahe.gzb.test-plugin") version "1.0.0"
}

使用 旧版插件应用

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

apply(plugin = "com.ejiahe.gzb.test-plugin")

使用 插件 DSL

plugins {
  id "com.ejiahe.gzb.test-plugin" version "1.0.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.ejiahe.gzb:gradle-plugin-boot:1.0.0"
  }
}

apply plugin: "com.ejiahe.gzb.test-plugin"

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