Search Gradle plugins

com.xebialabs.xld.docker

Allows compiling a plugin using a XLD docker container and running XLD in a Docker container with your plugin preloaded.

https://github.com/xebialabs-community/xld-docker-gradle-plugin

Sources: https://github.com/xebialabs-community/xld-docker-gradle-plugin.git

Version 1.1.0

Created 18 October 2016.

Allows compiling a plugin using a XLD docker container and running XLD in a Docker container with your plugin preloaded.

Using the plugins DSL:

plugins {
  id("com.xebialabs.xld.docker") version "1.1.0"
}

Using legacy plugin application:

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

apply(plugin = "com.xebialabs.xld.docker")

Using the plugins DSL:

plugins {
  id "com.xebialabs.xld.docker" version "1.1.0"
}

Using legacy plugin application:

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

apply plugin: "com.xebialabs.xld.docker"

Learn how to apply plugins to subprojects