搜索Gradle插件

com.github.wwadge.dockerprepare

所有者: Wallace Wadge

Gradle插件,用于为Spring Boot应用程序生成Docker层友好的目录。分支自https://github.com/gclayburg/dockerPreparePlugin,以便与Spring Boot M7兼容。

https://github.com/wwadge/dockerPreparePlugin

源代码:https://github.com/wwadge/dockerPreparePlugin

版本 1.1.1(最新版)

1.1.1

创建于2018年1月19日。

Gradle插件,用于为Spring Boot应用程序生成Docker层友好的目录。分支自https://github.com/gclayburg/dockerPreparePlugin,以便与Spring Boot M7兼容。

使用插件DSL

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

使用旧版插件应用

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

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

使用插件DSL

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

使用旧版插件应用

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

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

了解如何将插件应用到子项目中