Search Gradle plugins

Version 2.0.1

Created 22 February 2023.

Pre-configured defaults for HubbleMC projects.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "gg.hubblemc.defaults"

Learn how to apply plugins to subprojects