Search Gradle plugins

Version 0.2.0

Created 31 January 2015.

This is a Gradle plugin which 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 { jcenter() maven { url "http://www.knopflerfish.org/maven2/" } maven { url "https://dist.xebialabs.com/public/maven2/" } } dependencies { classpath 'com.xebialabs.gradle:xl-deploy-gradle-plugin:0.2.0' } } apply plugin: 'com.xebialabs.xl-deploy'

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.xebialabs.xl-deploy") version "0.2.0"
}

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.2.0")
    }
    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.2.0")
      }
    }
    
    apply(plugin = "com.xebialabs.xl-deploy")
  • Applying plugins to all subprojects .