Search Gradle plugins

Version 0.5.0 (latest)

Created 23 December 2022.

Gradle project set plugin.

Using the plugins DSL:

plugins {
  id("io.github.ngyewch.projectset") version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.ngyewch.gradle:gradle-projectset-plugin:0.5.0")
  }
}

apply(plugin = "io.github.ngyewch.projectset")

Using the plugins DSL:

plugins {
  id "io.github.ngyewch.projectset" version "0.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.ngyewch.gradle:gradle-projectset-plugin:0.5.0"
  }
}

apply plugin: "io.github.ngyewch.projectset"

Learn how to apply plugins to subprojects