com.gradle.common-custom-user-data-gradle-plugin
Owner: Gradle
A Gradle Plugin to capture common custom user data used for Gradle Build Scans in Gradle Enterprise
https://github.com/gradle/common-custom-user-data-gradle-plugin
Sources: https://github.com/gradle/gradle-enterprise-build-config-samples.git
Version 2.0.2 (latest)
2.0.2
Created 16 June 2024.
- [FIX] Deprecation warnings are printed when applied before the Develocity Gradle plugin
Using the plugins DSL:
plugins {
id("com.gradle.common-custom-user-data-gradle-plugin") version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradle:common-custom-user-data-gradle-plugin:2.0.2")
}
}
apply(plugin = "com.gradle.common-custom-user-data-gradle-plugin")
Using the plugins DSL:
plugins {
id "com.gradle.common-custom-user-data-gradle-plugin" version "2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle:common-custom-user-data-gradle-plugin:2.0.2"
}
}
apply plugin: "com.gradle.common-custom-user-data-gradle-plugin"