Search Gradle plugins

Version 1.0.1

Created 07 October 2017.

Gradle plugin to generate docker layer-friendly directory for spring boot applications

Using the plugins DSL:

plugins {
  id("com.garyclayburg.dockerprepare") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.garyclayburg:dockerPreparePlugin:1.0.1")
  }
}

apply(plugin = "com.garyclayburg.dockerprepare")

Using the plugins DSL:

plugins {
  id "com.garyclayburg.dockerprepare" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.garyclayburg:dockerPreparePlugin:1.0.1"
  }
}

apply plugin: "com.garyclayburg.dockerprepare"

Learn how to apply plugins to subprojects