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 1.12.1 (latest)
Created 05 December 2023.
- [NEW] Add a `CI controller` custom value to capture `JENKINS_URL` or `HUDSON_URL`
Using the plugins DSL:
plugins {
id("com.gradle.common-custom-user-data-gradle-plugin") version "1.12.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.gradle:common-custom-user-data-gradle-plugin:1.12.1")
}
}
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 "1.12.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.12.1"
}
}
apply plugin: "com.gradle.common-custom-user-data-gradle-plugin"