Search Gradle plugins

Version 0.1.0

Created 14 October 2017.

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.0"
}

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.0")
  }
}

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.0"
}

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.0"
  }
}

apply plugin: "io.github.http-builder-ng.http-plugin"

Learn how to apply plugins to subprojects