io.github.nigelgbanks.IsleTests
所有者: Nigel Geoffrey Banks
使用docker-compose文件进行测试
https://github.com/Islandora-Devops/isle-gradle-docker-plugin
来源: https://github.com/Islandora-Devops/isle-gradle-docker-plugin
使用 插件DSL
plugins {
id("io.github.nigelgbanks.IsleTests") version "1.0.17"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.17")
}
}
apply(plugin = "io.github.nigelgbanks.IsleTests")
使用 插件DSL
plugins {
id "io.github.nigelgbanks.IsleTests" version "1.0.17"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.17"
}
}
apply plugin: "io.github.nigelgbanks.IsleTests"