搜索 Gradle 插件

io.pivotal.GeodeIntegrationTestPlugin

拥有者: Pivotal GemFire

此 Gradle 插件通过 Maven 下载 Geode 发行版,将其解压缩到 build/install/apache-geode 中,并为通过 Gradle 运行的任何测试设置正确的环境变量。

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

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

版本 1.0(最新版)

1.0

创建于 2017 年 11 月 21 日。

此 Gradle 插件通过 Maven 下载 Geode 发行版,将其解压缩到 build/install/apache-geode 中,并为通过 Gradle 运行的任何测试设置正确的环境变量。

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

apply plugin: "io.pivotal.GeodeIntegrationTestPlugin"

了解如何将插件应用于子项目