Search Gradle plugins

com.xebialabs.xlr.docker

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

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

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

Version 1.0.1

Created 04 August 2016.

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

Using the plugins DSL:

plugins {
  id("com.xebialabs.xlr.docker") version "1.0.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.xebialabs.xlr.docker" version "1.0.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects