Search Gradle plugins

com.xebialabs.xl.docker

Allows compiling a plugin using a XL docker container and running the XL Tool in a Docker container with your plugin preloaded.

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

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

Version 1.1.0 (latest)

Created 14 April 2017.

Allows compiling a plugin using a XL docker container and running the XL Tool in a Docker container with your plugin preloaded.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.xebialabs.xl.docker") version "1.1.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.docker:com.xebialabs.xl.docker.gradle.plugin:1.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.xebialabs.xl.docker")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.xebialabs.xl.docker:com.xebialabs.xl.docker.gradle.plugin:1.1.0")
      }
    }
    
    apply(plugin = "com.xebialabs.xl.docker")
  • Applying plugins to all subprojects .