com.xebialabs.xlr.docker
所有者: Joris De Winne
允许使用XLR docker容器编译插件,并在预加载你的插件的Docker容器中运行XLR。
https://github.com/xebialabs-community/xlr-docker-gradle-plugin
来源:https://github.com/xebialabs-community/xlr-docker-gradle-plugin.git
使用 插件 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"