com.github.michaelruocco.rest-polling
Owner: Michael Ruocco
Gradle plugin that enables polling of rest endpoints for a specific result
https://github.com/michaelruocco/rest-polling-plugin
Sources: https://github.com/michaelruocco/rest-polling-plugin.git
Version 0.1.1 (latest)
0.1.1
Created 26 March 2021.
Gradle plugin that enables polling of rest endpoints for a specific result
Using the plugins DSL:
plugins {
id("com.github.michaelruocco.rest-polling") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1")
}
}
apply(plugin = "com.github.michaelruocco.rest-polling")
Using the plugins DSL:
plugins {
id "com.github.michaelruocco.rest-polling" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1"
}
}
apply plugin: "com.github.michaelruocco.rest-polling"