com.gitlab.bubna.plugin.gradle.docker.jdk11
Owner: Ilia Yavorsky
Simplify building of jlinked java 11 docker image
https://gitlab.com/ilia.bubna.yavorsky
Sources: https://gitlab.com/ilia.bubna.yavorsky/jdk11-docker-gradle-plugin
Version 1.8-SNAPSHOT
Created 28 March 2019.
Simplify building of jlinked java 11 docker image
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gitlab.bubna.plugin.gradle.docker.jdk11") version "1.8-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.gitlab.bubna.plugin.gradle.docker.jdk11:com.gitlab.bubna.plugin.gradle.docker.jdk11.gradle.plugin:1.8-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.gitlab.bubna.plugin.gradle.docker.jdk11") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gitlab.bubna.plugin.gradle.docker.jdk11:com.gitlab.bubna.plugin.gradle.docker.jdk11.gradle.plugin:1.8-SNAPSHOT") } } apply(plugin = "com.gitlab.bubna.plugin.gradle.docker.jdk11")
- Applying plugins to all subprojects .