搜索Gradle插件

版本 0.1.0 (最新版本)

0.1.0

创建日期:2020年11月5日。

一个Gradle插件,用于确定哪些模块在提交中被影响。

使用plugins DSL

plugins {
  id("com.dropbox.affectedmoduledetector") version "0.1.0"
}

使用遗产插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0")
  }
}

apply(plugin = "com.dropbox.affectedmoduledetector")

使用plugins DSL

plugins {
  id "com.dropbox.affectedmoduledetector" version "0.1.0"
}

使用遗产插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.dropbox.affectedmoduledetector:affectedmoduledetector:0.1.0"
  }
}

apply plugin: "com.dropbox.affectedmoduledetector"

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