Search Gradle plugins

Owner: nico

Opinionated CLI build for an Iluvatar Command. Applies software.visionary.java-base, adds software.visionary:commander as an api dependency, and registers a jlinkApp task that produces a self-contained jlink runtime image plus a launcher script.

https://codeberg.org/visionary_software/eru-conventions

Sources: https://codeberg.org/visionary_software/eru-conventions.git

Version 2026.05.10 (latest)

Created 25 May 2026.

Opinionated CLI build for an Iluvatar Command. Applies software.visionary.java-base, adds software.visionary:commander as an api dependency, and registers a jlinkApp task that produces a self-contained jlink runtime image plus a launcher script.

Add this plugin to your build using the plugins DSL:

plugins {
  id("software.visionary.eru") version "2026.05.10"
}

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