Search Gradle plugins

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"

Learn how to apply plugins to subprojects