com.xebialabs.xld.docker
Owner:
Joris De Winne
Allows compiling a plugin using a XLD docker container and running XLD in a Docker container with your plugin preloaded.
https://github.com/xebialabs-community/xld-docker-gradle-plugin
Sources: https://github.com/xebialabs-community/xld-docker-gradle-plugin.git
Version 1.2.2 (latest)
Created 03 November 2016.
Allows compiling a plugin using a XLD docker container and running XLD in a Docker container with your plugin preloaded.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xebialabs.xld.docker") version "1.2.2"
}
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.xebialabs.xld.docker:com.xebialabs.xld.docker.gradle.plugin:1.2.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.xebialabs.xld.docker") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.xebialabs.xld.docker:com.xebialabs.xld.docker.gradle.plugin:1.2.2") } } apply(plugin = "com.xebialabs.xld.docker")
- Applying plugins to all subprojects .