搜索 Gradle 插件

com.gradle.build-scan

所有者: Gradle

构建扫描是一个可共享和集中的构建记录,它提供了关于发生了什么以及为什么的信息。

https://scans.gradle.com/plugin/

来源: https://github.com/gradle/gradle

版本 3.18(最新版)

3.18

创建时间 2024年8月19日。

警告:已弃用此插件,改为使用“com.gradle.develocity”插件。有关更多详细信息及迁移说明,请参阅 https://gradle.com/help/gradle-plugin-develocity-migration。在本版本中:[新增] 扫描:捕获配置缓存未命中原因 [新增] 扫描:在扫描.gradle.com 和 Develocity 2024.2或更高版本中支持资源使用可观察性。

使用插件 DSL

plugins {
  id("com.gradle.build-scan") version "3.18"
}

使用旧插件应用程序

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

apply(plugin = "com.gradle.build-scan")

使用插件 DSL

plugins {
  id "com.gradle.build-scan" version "3.18"
}

使用旧插件应用程序

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

apply plugin: "com.gradle.build-scan"

学习如何将其应用到子项目