Search Gradle plugins

Version 0.4.1 (latest)

0.4.1

Created 22 April 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.4.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.creekservice:creek-system-test-gradle-plugin:0.4.1")
      }
    }
    
    apply(plugin = "org.creekservice.system.test")
  • Applying plugins to all subprojects .