Search Gradle plugins

Version 0.4.1-SNAPSHOT

Created 18 August 2017.

This Gradle plugin allows you to deploy your application to an environment as a part of the build process. It uses XL Deploy (http://xebialabs.com/products/xl-deploy/) server to perform the deployment. Please find more information and usage instructions on the GitHub project page (https://github.com/xebialabs-community/gradle-xld-plugin/blob/master/README.md). NOTE: THIS PLUGIN DEPENDS ON SOME ADDITIONAL REPOSITORIES: buildscript { repositories { maven { url "https://dist.xebialabs.com/public/maven2/" } } } plugins { id "com.xebialabs.xl-deploy" version "x.x.x" }

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.xebialabs.xl-deploy") version "0.4.1-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.xebialabs.xl-deploy:com.xebialabs.xl-deploy.gradle.plugin:0.4.1-SNAPSHOT")
    }
    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.4.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.xebialabs.xl-deploy")
  • Applying plugins to all subprojects .