Search Gradle plugins

Version 1.0.0

Created 30 May 2022.

A gradle plugin for minestom that generates the extension.json from the build file

Using the plugins DSL:

plugins {
  id("com.guflimc.minestom.extensionsetup") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.guflimc.minestom:extensionsetup:1.0.0")
  }
}

apply(plugin = "com.guflimc.minestom.extensionsetup")

Using the plugins DSL:

plugins {
  id "com.guflimc.minestom.extensionsetup" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.guflimc.minestom:extensionsetup:1.0.0"
  }
}

apply plugin: "com.guflimc.minestom.extensionsetup"

Learn how to apply plugins to subprojects