搜索 Gradle 插件

版本 1.3.0(最新版)

1.3.0

创建于 2017 年 5 月 16 日。

根据标签收集功能文件

使用 插件 DSL

plugins {
  id("com.testvagrant.featureCollector.plugin") version "1.3.0"
}

使用 旧插件应用程序

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

apply(plugin = "com.testvagrant.featureCollector.plugin")

使用 插件 DSL

plugins {
  id "com.testvagrant.featureCollector.plugin" version "1.3.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.testvagrant.featureCollector:FeatureCollector:1.3.0"
  }
}

apply plugin: "com.testvagrant.featureCollector.plugin"

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