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.2
Created 03 March 2021.
                A Gradle plugin to capture common custom user data used for Gradle Build Scans in Gradle Enterprise
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.gradle.common-custom-user-data-gradle-plugin") version "1.2"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.gradle.common-custom-user-data-gradle-plugin:com.gradle.common-custom-user-data-gradle-plugin.gradle.plugin:1.2") }It can then be applied in the precompiled script plugin:plugins { id("com.gradle.common-custom-user-data-gradle-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gradle.common-custom-user-data-gradle-plugin:com.gradle.common-custom-user-data-gradle-plugin.gradle.plugin:1.2") } } apply(plugin = "com.gradle.common-custom-user-data-gradle-plugin")
- Applying plugins to all subprojects .