Search Gradle plugins

io.pivotal.GeodeIntegrationTestPlugin

This Gradle plugin downloads a distribution of Geode via Maven, unzips it into build/install/apache-geode, and sets the proper environment variable for any tests that are run through Gradle.

https://cwiki.apache.org/confluence/display/GEODE/Test+your+application

Sources: https://github.com/gemfire/geode-integration-test-gradle-plugin

Version 1.0 (latest)

Created 21 November 2017.

This Gradle plugin downloads a distribution of Geode via Maven, unzips it into build/install/apache-geode, and sets the proper environment variable for any tests that are run through Gradle.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.pivotal.GeodeIntegrationTestPlugin") version "1.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("io.pivotal.GeodeIntegrationTestPlugin:io.pivotal.GeodeIntegrationTestPlugin.gradle.plugin:1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.pivotal.GeodeIntegrationTestPlugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.pivotal.GeodeIntegrationTestPlugin:io.pivotal.GeodeIntegrationTestPlugin.gradle.plugin:1.0")
      }
    }
    
    apply(plugin = "io.pivotal.GeodeIntegrationTestPlugin")
  • Applying plugins to all subprojects .