搜索Gradle插件

版本 2020.2.5 (最新)

2020.2.5

创建于 2020年2月7日。

此插件版本将在JCenter永久重定向到Maven Central之后无法解析,因为它仅使用在JCenter中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 此插件版本将在JCenter永久重定向到Maven Central之后无法解析,因为它仅使用在JCenter中可找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Avito Android 插件

使用 插件DSL

plugins {
  id("com.avito.android.instrumentation-test-impact-analysis") version "2020.2.5"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.avito.android:instrumentation-impact-analysis:2020.2.5")
  }
}

apply(plugin = "com.avito.android.instrumentation-test-impact-analysis")

使用 插件DSL

plugins {
  id "com.avito.android.instrumentation-test-impact-analysis" version "2020.2.5"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.avito.android:instrumentation-impact-analysis:2020.2.5"
  }
}

apply plugin: "com.avito.android.instrumentation-test-impact-analysis"

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