Search Gradle plugins

Owner: Yar A.

Conventional-commits versioning + Docker image release for ghcr.io and other registries.

https://github.com/YarAllex/shipyard

Sources: https://github.com/YarAllex/shipyard.git

Version 0.1.1

Created 04 May 2026.

Conventional-commits versioning + Docker image release for ghcr.io and other registries.

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.yarallex.shipyard") version "0.1.1"
}

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