Search Gradle plugins

Version 6.2.2-RELEASE (latest)

Created 04 February 2026.

Generates entity classes from database metadata

Add this plugin to your build using the plugins DSL:

plugins {
  id("solutions.sulfura.hyperkit-entity-generator") version "6.2.2-RELEASE"
}

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