Search Gradle plugins

Owner: Ayfri

Builds a Kore datapack, links it into Minecraft worlds and reloads a running server.

https://kore.ayfri.com

Sources: https://github.com/Ayfri/Kore

Version 2.14.0-26.2 (latest)

Created 06 September 2026.

Builds a Kore datapack, links it into Minecraft worlds and reloads a running server.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.ayfri.kore") version "2.14.0-26.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("io.github.ayfri.kore:io.github.ayfri.kore.gradle.plugin:2.14.0-26.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.ayfri.kore")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ayfri.kore:io.github.ayfri.kore.gradle.plugin:2.14.0-26.2")
      }
    }
    
    apply(plugin = "io.github.ayfri.kore")
  • Applying plugins to all subprojects .