搜索Gradle插件

版本 0.1.1(最新版)

0.1.1

创建于 2017年11月27日。

此插件版本在JCenter永久重定向到Maven Central之后将不再解析,因为它只使用JCenter中存在的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Gradle插件,用于将HTTP调用作为任务创建。

使用插件DSL

plugins {
  id("io.github.http-builder-ng.http-plugin") version "0.1.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.http-builder-ng:http-plugin:0.1.1")
  }
}

apply(plugin = "io.github.http-builder-ng.http-plugin")

使用插件DSL

plugins {
  id "io.github.http-builder-ng.http-plugin" version "0.1.1"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.http-builder-ng:http-plugin:0.1.1"
  }
}

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

了解如何将插件应用到子项目中