Search Gradle plugins

Version 2.0.3

Created 23 February 2023.

Pre-configured defaults for HubbleMC projects.

Using the plugins DSL:

plugins {
  id("gg.hubblemc.defaults") version "2.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gg.hubblemc:gradle-plugin:2.0.3")
  }
}

apply(plugin = "gg.hubblemc.defaults")

Using the plugins DSL:

plugins {
  id "gg.hubblemc.defaults" version "2.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gg.hubblemc:gradle-plugin:2.0.3"
  }
}

apply plugin: "gg.hubblemc.defaults"

Learn how to apply plugins to subprojects