Search Gradle plugins

Version 24.10.01 (latest)

24.10.01

Created 03 October 2024.

gracle version catalog

Using the plugins DSL:

plugins {
  id("io.github.5hmlA.vcl") version "24.10.01"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.5hmlA.vcl" version "24.10.01"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects