Search Gradle plugins

com.gitlab.firestar99.spigotgradle.plugin

This Plugin sets up the spigot repos and adds the spigot api dependency to the project automatically

https://gitlab.com/Firestar99/spigotgradle/readme.md

Sources: https://gitlab.com/Firestar99/spigotgradle/

Version 1.6 (latest)

Created 16 May 2020.

This Plugin sets up the spigot repos and adds the spigot api dependency to the project automatically

Using the plugins DSL:

plugins {
  id("com.gitlab.firestar99.spigotgradle.plugin") version "1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.6")
  }
}

apply(plugin = "com.gitlab.firestar99.spigotgradle.plugin")

Using the plugins DSL:

plugins {
  id "com.gitlab.firestar99.spigotgradle.plugin" version "1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.6"
  }
}

apply plugin: "com.gitlab.firestar99.spigotgradle.plugin"

Learn how to apply plugins to subprojects