gg.hubblemc.paper
Owner: Koding Dev
Utilities for developing Paper plugins.
Sources: https://github.com/HubbleMC/gradle-plugin
Version 1.2.1
1.2.1
Created 24 November 2022.
Utilities for developing Paper plugins.
Using the plugins DSL:
plugins {
id("gg.hubblemc.paper") version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gg.hubblemc:gradle-plugin:1.2.1")
}
}
apply(plugin = "gg.hubblemc.paper")
Using the plugins DSL:
plugins {
id "gg.hubblemc.paper" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gg.hubblemc:gradle-plugin:1.2.1"
}
}
apply plugin: "gg.hubblemc.paper"