Search Gradle plugins

Version 1.11

Created 31 May 2023.

- [FIX] Generates incorrect "GitHub Actions Build" and "GitHub/GitLab Source" links to repositories not hosted at github.com or gitlab.com
- [NEW] Detect BuildKite CI and add respective custom tags, values and links

Using the plugins DSL:

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

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

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

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

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

Learn how to apply plugins to subprojects