io.github.nigelgbanks.IsleTests
Owner: Nigel Geoffrey Banks
Perform tests with docker-compose files
https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Sources: https://github.com/Islandora-Devops/isle-gradle-docker-plugin
Version 1.0.17 (latest)
1.0.17
Created 14 January 2023.
Perform tests with docker-compose files
Using the plugins DSL:
plugins {
id("io.github.nigelgbanks.IsleTests") version "1.0.17"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.17")
}
}
apply(plugin = "io.github.nigelgbanks.IsleTests")
Using the plugins DSL:
plugins {
id "io.github.nigelgbanks.IsleTests" version "1.0.17"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.nigelgbanks:isle-gradle-docker-plugin:1.0.17"
}
}
apply plugin: "io.github.nigelgbanks.IsleTests"