Search Gradle plugins

dev.simplix.helper.bukkit

Owner: Leonhard

Generate plugin.yml for Bukkit plugins based on the Gradle project

https://simplixsoft.com/

Sources: https://simplixsoft.com/

Version 1.0.0

Created 25 December 2021.

Generate plugin.yml for Bukkit plugins based on the Gradle project

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.simplix.helper.bukkit") version "1.0.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("dev.simplix.helper.bukkit:dev.simplix.helper.bukkit.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("dev.simplix.helper.bukkit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.simplix.helper.bukkit:dev.simplix.helper.bukkit.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "dev.simplix.helper.bukkit")
  • Applying plugins to all subprojects .