Search Gradle plugins

Version 1.1 (latest)

Created 25 November 2017.

Dockerize your java application

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.github.com.mgrzeszczak:dockerize:1.1")
  }
}

apply(plugin = "github.com.mgrzeszczak.dockerize")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.github.com.mgrzeszczak:dockerize:1.1"
  }
}

apply plugin: "github.com.mgrzeszczak.dockerize"

Learn how to apply plugins to subprojects