com.gitlab.firestar99.spigotgradle.plugin
Owner: Firestar99
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.0
1.0
Created 15 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.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.0")
}
}
apply(plugin = "com.gitlab.firestar99.spigotgradle.plugin")
Using the plugins DSL:
plugins {
id "com.gitlab.firestar99.spigotgradle.plugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gitlab.firestar99.spigotgradle:SpigotGradle:1.0"
}
}
apply plugin: "com.gitlab.firestar99.spigotgradle.plugin"