com.github.pedjak.dockerized-test
在Docker镜像内运行测试
https://github.com/pedjak/gradle-dockerized-test-plugin
使用插件DSL
plugins {
id("com.github.pedjak.dockerized-test") version "0.5.10"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.pedjak.gradle.plugins:dockerized-test:0.5.10")
}
}
apply(plugin = "com.github.pedjak.dockerized-test")