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"
}

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.xebialabs.xl-deploy:gradle-xld-plugin:0.4.1-SNAPSHOT")
  }
}

apply(plugin = "com.xebialabs.xl-deploy")

Using the plugins DSL:

plugins {
  id "com.xebialabs.xl-deploy" version "0.4.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.xebialabs.xl-deploy:gradle-xld-plugin:0.4.1-SNAPSHOT"
  }
}

apply plugin: "com.xebialabs.xl-deploy"

Learn how to apply plugins to subprojects