Search Gradle plugins

com.gitlab.firestar99.spigotgradle.server

Automatically builds the spigot jar using the spigot BuildTool, sets up a spigot server in /server and puts the plugins in the correct place

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

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

Version 1.6 (latest)

Created 16 May 2020.

Automatically builds the spigot jar using the spigot BuildTool, sets up a spigot server in /server and puts the plugins in the correct place

Using the plugins DSL:

plugins {
  id("com.gitlab.firestar99.spigotgradle.server") 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.server")

Using the plugins DSL:

plugins {
  id "com.gitlab.firestar99.spigotgradle.server" 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.server"

Learn how to apply plugins to subprojects