Search Gradle plugins

Owner: Koboo

Gradle plugin to automatically generate the manifest.json for Hytale plugins.

https://github.com/Koboo/hytale-pluginmanifest

Sources: https://github.com/Koboo/hytale-pluginmanifest

Version 1.0.22 (latest)

Created 14 January 2026.

Gradle plugin to automatically generate the manifest.json for Hytale plugins.

Add this plugin to your build using the plugins DSL:

plugins {
  id("eu.koboo.pluginmanifest") version "1.0.22"
}

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