搜索Gradle插件

版本 1.2.1 (最新)

1.2.1

创建于2016年10月25日。

允许使用XLR docker容器编译插件,并在预加载你的插件的Docker容器中运行XLR。

使用 插件 DSL

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

使用 旧的插件应用程序

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

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

使用 插件 DSL

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

使用 旧的插件应用程序

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

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

了解如何将插件应用到子项目中