Search Gradle plugins

Version 2.0.5

Created 26 February 2023.

Pre-configured linting for HubbleMC projects.

Using the plugins DSL:

plugins {
  id("gg.hubblemc.linting") version "2.0.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "gg.hubblemc.linting" version "2.0.5"
}

Using legacy plugin application:

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

apply plugin: "gg.hubblemc.linting"

Learn how to apply plugins to subprojects