Search Gradle plugins

Version 0.2.7 (latest)

0.2.7

Created 27 January 2017.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Gradle DockerCompose Integration Test Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.itbasis.gradle.plugins.docker-compose-integration-test") version "0.2.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.itbasis.gradle.plugins:docker-compose-integration-test:0.2.7")
      }
    }
    
    apply(plugin = "ru.itbasis.gradle.plugins.docker-compose-integration-test")
  • Applying plugins to all subprojects .