de.datenkollektiv.dockerizor
Owner:
Florian Waibel
Gradle plug-in to create a Docker image that includes an Eclipse Virgo container
https://github.com/datenkollektiv/dockerizor
Sources: https://github.com/datenkollektiv/dockerizor
Version 0.9.2.BUILD-SNAPSHOT
Created 24 May 2020.
Gradle plug-in to create a Docker image that includes an Eclipse Virgo container
Add this plugin to your build using the plugins DSL:
plugins {
id("de.datenkollektiv.dockerizor") version "0.9.2.BUILD-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("de.datenkollektiv.dockerizor:de.datenkollektiv.dockerizor.gradle.plugin:0.9.2.BUILD-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("de.datenkollektiv.dockerizor") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.datenkollektiv.dockerizor:de.datenkollektiv.dockerizor.gradle.plugin:0.9.2.BUILD-SNAPSHOT") } } apply(plugin = "de.datenkollektiv.dockerizor")
- Applying plugins to all subprojects .