Search Gradle plugins

Version 24.09.30 (latest)

24.09.30

Created 01 October 2024.

gracle version catalog

Using the plugins DSL:

plugins {
  id("io.github.5hmlA.vc") version "24.09.30"
}

Using legacy plugin application:

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

apply(plugin = "io.github.5hmlA.vc")

Using the plugins DSL:

plugins {
  id "io.github.5hmlA.vc" version "24.09.30"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.5hmlA:gradle-plugin:24.09.30"
  }
}

apply plugin: "io.github.5hmlA.vc"

Learn how to apply plugins to subprojects