Search Gradle plugins

Gradle plugin that generates a typed event API for Minestom by scanning event classes at build time

https://github.com/Minestom-United/minestom-events

Sources: https://github.com/Minestom-United/minestom-events

Version 0.0.2 (latest)

Created 14 June 2026.

Gradle plugin that generates a typed event API for Minestom by scanning event classes at build time

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.minestom-united.minestom-events") version "0.0.2"
}

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