Search Gradle plugins

Version 1.1 (latest)

1.1

Created 25 November 2017.

Dockerize your java application

Add this plugin to your build using the plugins DSL:

plugins {
  id("github.com.mgrzeszczak.dockerize") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.github.com.mgrzeszczak:dockerize:1.1")
      }
    }
    
    apply(plugin = "github.com.mgrzeszczak.dockerize")
  • Applying plugins to all subprojects .