Search Gradle plugins

com.github.wwadge.dockerprepare

Gradle plugin to generate docker layer-friendly directory for spring boot applications. Forked from https://github.com/gclayburg/dockerPreparePlugin to make it work with spring boot M7.

https://github.com/wwadge/dockerPreparePlugin

Sources: https://github.com/wwadge/dockerPreparePlugin

Version 1.1.1 (latest)

Created 19 January 2018.

Gradle plugin to generate docker layer-friendly directory for spring boot applications. Forked from https://github.com/gclayburg/dockerPreparePlugin to make it work with spring boot M7.

Using the plugins DSL:

plugins {
  id("com.github.wwadge.dockerprepare") version "1.1.1"
}

Using legacy plugin application:

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

apply(plugin = "com.github.wwadge.dockerprepare")

Using the plugins DSL:

plugins {
  id "com.github.wwadge.dockerprepare" version "1.1.1"
}

Using legacy plugin application:

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

apply plugin: "com.github.wwadge.dockerprepare"

Learn how to apply plugins to subprojects