com.jaredjstewart.GeodeIntegrationPlugin
Owner: Jared Stewart
This Gradle plugin adds a task (:installGeode) that 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://github.com/jaredjstewart/geode-integration-plugin
Sources: https://github.com/jaredjstewart/gradle-geode-integration-test-plugin.git
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 02 November 2017.
This Gradle plugin adds a task (:installGeode) that 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("com.jaredjstewart.GeodeIntegrationPlugin") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.jaredjstewart:gradle-geode-integration-test-plugin:1.0-SNAPSHOT")
}
}
apply(plugin = "com.jaredjstewart.GeodeIntegrationPlugin")
Using the plugins DSL:
plugins {
id "com.jaredjstewart.GeodeIntegrationPlugin" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.jaredjstewart:gradle-geode-integration-test-plugin:1.0-SNAPSHOT"
}
}
apply plugin: "com.jaredjstewart.GeodeIntegrationPlugin"