io.github.http-builder-ng.http-plugin
Owner: Christopher J. Stehno
Gradle plugin to aid in creating HTTP calls as tasks.
https://github.com/http-builder-ng/gradle-http-plugin
Sources: https://github.com/http-builder-ng/gradle-http-plugin
Version 0.1.1 (latest)
0.1.1
Created 27 November 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle plugin to aid in creating HTTP calls as tasks.
Using the plugins DSL:
plugins {
id("io.github.http-builder-ng.http-plugin") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.http-builder-ng:http-plugin:0.1.1")
}
}
apply(plugin = "io.github.http-builder-ng.http-plugin")
Using the plugins DSL:
plugins {
id "io.github.http-builder-ng.http-plugin" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.http-builder-ng:http-plugin:0.1.1"
}
}
apply plugin: "io.github.http-builder-ng.http-plugin"