Owner:
David Estes
Gradle plugin for compiling seed data into Grails applications.
https://github.com/wondrify/seed-me
Sources: https://github.com/wondrify/seed-me
Version 7.0.0 (latest)
Created 25 February 2026.
Gradle plugin for compiling seed data into Grails applications.
Add this plugin to your build using the plugins DSL:
plugins {
id("cloud.wondrify.seed-me") version "7.0.0"
}
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("cloud.wondrify.seed-me:cloud.wondrify.seed-me.gradle.plugin:7.0.0") }It can then be applied in the precompiled script plugin:plugins { id("cloud.wondrify.seed-me") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cloud.wondrify.seed-me:cloud.wondrify.seed-me.gradle.plugin:7.0.0") } } apply(plugin = "cloud.wondrify.seed-me") - Applying plugins to all subprojects .