com.brambolt.gradle.rest
Owner: Brambolt
REST API utility
https://github.com/brambolt/gradle-rest
Sources: https://github.com/brambolt/gradle-rest
Version 2020.12.07-4291
2020.12.07-4291
Created 07 December 2020.
REST API porcelain for the Jetty HTTP client
Using the plugins DSL:
plugins {
id("com.brambolt.gradle.rest") version "2020.12.07-4291"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.brambolt.gradle:brambolt-gradle-rest:2020.12.07-4291")
}
}
apply(plugin = "com.brambolt.gradle.rest")
Using the plugins DSL:
plugins {
id "com.brambolt.gradle.rest" version "2020.12.07-4291"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.brambolt.gradle:brambolt-gradle-rest:2020.12.07-4291"
}
}
apply plugin: "com.brambolt.gradle.rest"