Search Gradle plugins

ru.endlesscode.gradle.bukkit

DEPRECATED: Replaced by ru.endlesscode.bukkitgradle

Sources: https://github.com/EndlessCodeGroup/BukkitGradle

Version 0.2.0-SNAPSHOT

Created 14 April 2017.

Gradle plugin providing integration for plugins made for the Bukkit platform

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.endlesscode.gradle.bukkit") version "0.2.0-SNAPSHOT"
}

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("ru.endlesscode.gradle.bukkit:ru.endlesscode.gradle.bukkit.gradle.plugin:0.2.0-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ru.endlesscode.gradle.bukkit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.endlesscode.gradle.bukkit:ru.endlesscode.gradle.bukkit.gradle.plugin:0.2.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "ru.endlesscode.gradle.bukkit")
  • Applying plugins to all subprojects .