com.google.cloud.tools.jib
Containerize your Java application
https://github.com/GoogleContainerTools/jib/
Sources: https://github.com/google/jib/
Add this plugin to your build using the plugins DSL:
plugins {
id("com.google.cloud.tools.jib") version "2.4.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.google.cloud.tools:jib-gradle-plugin:2.4.0") } } apply(plugin = "com.google.cloud.tools.jib")
- Applying plugins to all subprojects .