Search Gradle plugins

Version 1.0.4 (latest)

Created 10 March 2021.

Automatically adds needed libraries, and download/starts the latest server for testing

Using the plugins DSL:

plugins {
  id("com.bigbade.minecraftplugindevelopment") version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.bigbade.minecraftplugindevelopment:gradle-plugin:1.0.4")
  }
}

apply(plugin = "com.bigbade.minecraftplugindevelopment")

Using the plugins DSL:

plugins {
  id "com.bigbade.minecraftplugindevelopment" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.bigbade.minecraftplugindevelopment:gradle-plugin:1.0.4"
  }
}

apply plugin: "com.bigbade.minecraftplugindevelopment"

Learn how to apply plugins to subprojects