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.

Using the plugins DSL:

plugins {
  id("io.pivotal.GeodeIntegrationTestPlugin") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.pivotal:geode-integration-test-gradle-plugin:1.0")
  }
}

apply(plugin = "io.pivotal.GeodeIntegrationTestPlugin")

Using the plugins DSL:

plugins {
  id "io.pivotal.GeodeIntegrationTestPlugin" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.pivotal:geode-integration-test-gradle-plugin:1.0"
  }
}

apply plugin: "io.pivotal.GeodeIntegrationTestPlugin"

Learn how to apply plugins to subprojects