Search Gradle plugins

Version 1.0.4

Created 17 June 2015.

Allows packaging an XLD plugin as a xldp file.

Using the plugins DSL:

plugins {
  id("com.xebialabs.xldp") version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.xebialabs.gradle.plugins:xldp-gradle-plugin:1.0.4")
  }
}

apply(plugin = "com.xebialabs.xldp")

Using the plugins DSL:

plugins {
  id "com.xebialabs.xldp" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.xebialabs.gradle.plugins:xldp-gradle-plugin:1.0.4"
  }
}

apply plugin: "com.xebialabs.xldp"

Learn how to apply plugins to subprojects