Search Gradle plugins

Version 1.1.4

1.1.4

Created 27 July 2018.

Gradle Plugin to execute microservice integration tests with docker

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.db.vz.msintplugin") version "1.1.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.db.vz:msintplugin:1.1.4")
      }
    }
    
    apply(plugin = "de.db.vz.msintplugin")
  • Applying plugins to all subprojects .