Search Gradle plugins

Version 1.4.1 (latest)

Created 09 July 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.garyclayburg.dockerprepare"

Learn how to apply plugins to subprojects