gg.hubblemc.defaults
Owner: Koding Dev
Pre-configured defaults for HubbleMC projects.
Sources: https://github.com/HubbleMC/gradle-plugin
Version 2.1.4 (latest)
2.1.4
Created 25 June 2023.
Pre-configured defaults for HubbleMC projects.
Using the plugins DSL:
plugins {
id("gg.hubblemc.defaults") version "2.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gg.hubblemc:gradle-plugin:2.1.4")
}
}
apply(plugin = "gg.hubblemc.defaults")
Using the plugins DSL:
plugins {
id "gg.hubblemc.defaults" version "2.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gg.hubblemc:gradle-plugin:2.1.4"
}
}
apply plugin: "gg.hubblemc.defaults"