搜索Gradle插件

com.gradle.develocity

所有者: Gradle

Develocity为您提供了加速构建、提高构建可靠性和加速构建调试的数据。

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

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

版本 3.18(最新版)

3.18

创建于 2024年8月19日。

本版本中:[新增] 构建扫描:捕获配置缓存未命中原因 [新增] 构建扫描:使Build Scan兼容扫描.gradle.com和Develocity 2024.2或更高版本。

使用插件DSL

plugins {
  id("com.gradle.develocity") version "3.18"
}

使用旧插件应用程序

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

apply(plugin = "com.gradle.develocity")

使用插件DSL

plugins {
  id "com.gradle.develocity" version "3.18"
}

使用旧插件应用程序

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

apply plugin: "com.gradle.develocity"

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