搜索 Gradle 插件

org.tenne.rest

所有者: Naom Y. Tenne

一个提供执行 REST 请求任务基础设施的 Gradle 插件。

http://www.10ne.org/

来源: https://github.com/noamt/rest-gradle-plugin.git

版本 0.4.2 (最新)

0.4.2

创建于 2016 年 5 月 30 日。

由于该插件版本仅使用 JCenter 可用的依赖项,因此在 JCenter 成为一个永久重定向到 Maven Central 之后,它将不再可解析。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact A Gradle plugin that provides a task infrastructure to perform REST requests.

使用 plugins DSL

plugins {
  id("org.tenne.rest") version "0.4.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org._10ne.gradle:rest-gradle-plugin:0.4.2")
  }
}

apply(plugin = "org.tenne.rest")

使用 plugins DSL

plugins {
  id "org.tenne.rest" version "0.4.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org._10ne.gradle:rest-gradle-plugin:0.4.2"
  }
}

apply plugin: "org.tenne.rest"

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