com.garyclayburg.dockerprepare
Owner: Gary Clayburg
Gradle plugin to generate docker layer-friendly directory for spring boot applications
https://github.com/gclayburg/dockerPreparePlugin
Sources: https://github.com/gclayburg/dockerPreparePlugin
Version 0.9.3-SNAPSHOT
0.9.3-SNAPSHOT
Created 23 September 2017.
Gradle plugin to generate docker layer-friendly directory for spring boot applications
Using the plugins DSL:
plugins {
id("com.garyclayburg.dockerprepare") version "0.9.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.garyclayburg:dockerPreparePlugin:0.9.3-SNAPSHOT")
}
}
apply(plugin = "com.garyclayburg.dockerprepare")
Using the plugins DSL:
plugins {
id "com.garyclayburg.dockerprepare" version "0.9.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.garyclayburg:dockerPreparePlugin:0.9.3-SNAPSHOT"
}
}
apply plugin: "com.garyclayburg.dockerprepare"