Search Gradle plugins

Gradle plugin for building Docker images with automatic artifact detection and copying for JVM and Native projects

https://github.com/crowdproj/docker-kmp-plugin

Sources: https://github.com/crowdproj/docker-kmp-plugin.git

Version 0.1.2 (latest)

Created 12 May 2026.

Gradle plugin for building Docker images with automatic artifact detection and copying for JVM and Native projects

Gradle features compatibility:
Configuration cache ×

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.crowdproj.plugins.docker") version "0.1.2"
}

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