Search Gradle plugins

Version 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"

Learn how to apply plugins to subprojects