Search Gradle plugins

Version 0.3.1

Created 30 January 2023.

Executes blackbox testing of services running in Docker containers

Using the plugins DSL:

plugins {
  id("org.creekservice.system.test") version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.creekservice:creek-system-test-gradle-plugin:0.3.1")
  }
}

apply(plugin = "org.creekservice.system.test")

Using the plugins DSL:

plugins {
  id "org.creekservice.system.test" version "0.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.creekservice:creek-system-test-gradle-plugin:0.3.1"
  }
}

apply plugin: "org.creekservice.system.test"

Learn how to apply plugins to subprojects