Search Gradle plugins

Version 1.0.1 (latest)

Created 02 November 2022.

Spigot SpecialSource gradle plugin

Using the plugins DSL:

plugins {
  id("com.vjh0107.special-source") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vjh0107:special-source:1.0.1")
  }
}

apply(plugin = "com.vjh0107.special-source")

Using the plugins DSL:

plugins {
  id "com.vjh0107.special-source" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vjh0107:special-source:1.0.1"
  }
}

apply plugin: "com.vjh0107.special-source"

Learn how to apply plugins to subprojects