搜索Gradle插件

版本 0.1.1(最新版本)

0.1.1

创建于 2021年3月26日。

Gradle插件,允许轮询特定结果的REST端点

使用 插件DSL

plugins {
  id("com.github.michaelruocco.rest-polling") version "0.1.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1")
  }
}

apply(plugin = "com.github.michaelruocco.rest-polling")

使用 插件DSL

plugins {
  id "com.github.michaelruocco.rest-polling" version "0.1.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.michaelruocco:rest-polling-plugin:0.1.1"
  }
}

apply plugin: "com.github.michaelruocco.rest-polling"

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