搜索 Gradle 插件

版本 0.0.2 (最新)

0.0.2

创建于 2020年2月4日。

使用异步分析器对 Gradle 构建进行配置

使用 插件 DSL

plugins {
  id("org.gradle.gradle-profiler") version "0.0.2"
}

使用 旧版插件应用程序

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

apply(plugin = "org.gradle.gradle-profiler")

使用 插件 DSL

plugins {
  id "org.gradle.gradle-profiler" version "0.0.2"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.gradle.profiler:gradle-profiler-plugin:0.0.2"
  }
}

apply plugin: "org.gradle.gradle-profiler"

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