com.github.michaelruocco.rest-polling
Gradle插件,允许轮询特定结果的REST端点
https://github.com/michaelruocco/rest-polling-plugin
源代码: https://github.com/michaelruocco/rest-polling-plugin.git
使用 插件DSL
plugins {
id("com.github.michaelruocco.rest-polling") version "0.1.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1")
}
}
apply(plugin = "com.github.michaelruocco.rest-polling")
使用 插件DSL
plugins {
id "com.github.michaelruocco.rest-polling" version "0.1.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1"
}
}
apply plugin: "com.github.michaelruocco.rest-polling"