搜索 Gradle 插件

版本 0.3.5(最新版)

0.3.5

创建于 2018 年 9 月 15 日。

Dockerize Spring Boot Gradle 插件

使用插件 DSL

plugins {
  id("com.pawmot.dockerize-spring-boot") version "0.3.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.pawmot:dockerize-spring-boot:0.3.5")
  }
}

apply(plugin = "com.pawmot.dockerize-spring-boot")

使用插件 DSL

plugins {
  id "com.pawmot.dockerize-spring-boot" version "0.3.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.pawmot:dockerize-spring-boot:0.3.5"
  }
}

apply plugin: "com.pawmot.dockerize-spring-boot"

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