搜索Gradle插件

版本 1.3.1 (最新版本)

1.3.1

创建于2024年2月18日。

使用docker或podman构建和发布容器镜像。简单的cli包装器。

使用插件DSL

plugins {
  id("org.implab.gradle-container-base") version "1.3.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.implab.gradle:container:1.3.1")
  }
}

apply(plugin = "org.implab.gradle-container-base")

使用插件DSL

plugins {
  id "org.implab.gradle-container-base" version "1.3.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.implab.gradle:container:1.3.1"
  }
}

apply plugin: "org.implab.gradle-container-base"

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