com.xebialabs.xl-deploy
Owner: XebiaLabs
Gradle plugin to execute deployments using XL Deploy server
https://github.com/xebialabs-community/gradle-xld-plugin
Version 0.6.2-test-4 (latest)
Created 31 January 2018.
No version description available.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.xebialabs.xl-deploy") version "0.6.2-test-4"
}
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.xl-deploy:com.xebialabs.xl-deploy.gradle.plugin:0.6.2-test-4") }
It can then be applied in the precompiled script plugin:plugins { id("com.xebialabs.xl-deploy") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.xebialabs.xl-deploy:com.xebialabs.xl-deploy.gradle.plugin:0.6.2-test-4") } } apply(plugin = "com.xebialabs.xl-deploy")
- Applying plugins to all subprojects .