搜索 Gradle 插件

版本 0.1 (最新版本)

0.1

创建于 2019 年 2 月 16 日。

另一个测试插件!

使用插件 DSL

plugins {
  id("com.andrewtasso.test-plugin") version "0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.andrewtasso:test-gradle-plugin:0.1")
  }
}

apply(plugin = "com.andrewtasso.test-plugin")

使用插件 DSL

plugins {
  id "com.andrewtasso.test-plugin" version "0.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.andrewtasso:test-gradle-plugin:0.1"
  }
}

apply plugin: "com.andrewtasso.test-plugin"

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