org.creekservice.system.test
Owner:
Andy Coates
Executes blackbox testing of services running in Docker containers
https://www.creekservice.org/creek-system-test-gradle-plugin/
Sources: https://github.com/creek-service/creek-system-test-gradle-plugin
Version 0.3.0
Created 12 January 2023.
Executes blackbox testing of services running in Docker containers
Add this plugin to your build using the plugins DSL:
plugins {
id("org.creekservice.system.test") version "0.3.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.creekservice.system.test:org.creekservice.system.test.gradle.plugin:0.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.creekservice.system.test") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.creekservice.system.test:org.creekservice.system.test.gradle.plugin:0.3.0") } } apply(plugin = "org.creekservice.system.test")
- Applying plugins to all subprojects .