搜索 Gradle 插件

com.jaredjstewart.GeodeIntegrationPlugin

所有者: Jared Stewart

此 Gradle 插件添加了一个任务 (:installGeode),通过 Maven 下载 Geode 发行版,将其解压到 build/install/apache-geode,并为通过 Gradle 运行的任何测试设置正确的环境变量。

https://github.com/jaredjstewart/geode-integration-plugin

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

版本 1.0-SNAPSHOT(最新版本)

1.0-SNAPSHOT

创建于 2017年11月2日。

此 Gradle 插件添加了一个任务 (:installGeode),通过 Maven 下载 Geode 发行版,将其解压到 build/install/apache-geode,并为通过 Gradle 运行的任何测试设置正确的环境变量。

使用 插件 DSL

plugins {
  id("com.jaredjstewart.GeodeIntegrationPlugin") version "1.0-SNAPSHOT"
}

使用 旧插件应用

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

apply(plugin = "com.jaredjstewart.GeodeIntegrationPlugin")

使用 插件 DSL

plugins {
  id "com.jaredjstewart.GeodeIntegrationPlugin" version "1.0-SNAPSHOT"
}

使用 旧插件应用

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

apply plugin: "com.jaredjstewart.GeodeIntegrationPlugin"

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