搜索 Gradle 插件

版本 0.1.10 (最新版本)

0.1.10

创建于 2016 年 12 月 14 日。

a Consul 插件 for gradle,用于在集成测试期间运行 Consul,并允许从运行中的 Consul 注册和删除服务和检查

使用 插件 DSL

plugins {
  id("ajk.gradle.consul") version "0.1.10"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("ajk.gradle.consul:gradle-consul-plugin:0.1.10")
  }
}

apply(plugin = "ajk.gradle.consul")

使用 插件 DSL

plugins {
  id "ajk.gradle.consul" version "0.1.10"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "ajk.gradle.consul:gradle-consul-plugin:0.1.10"
  }
}

apply plugin: "ajk.gradle.consul"

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