Search Gradle plugins

Version 1.11.3

Created 29 September 2023.

- [FIX] PGP key to sign the artifacts needs to be rotated

Using the plugins DSL:

plugins {
  id("com.gradle.common-custom-user-data-gradle-plugin") version "1.11.3"
}

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.11.3")
  }
}

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.11.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.3"
  }
}

apply plugin: "com.gradle.common-custom-user-data-gradle-plugin"

Learn how to apply plugins to subprojects