搜索 Gradle 插件

版本 5.2.0 (最新版本)

5.2.0

创建时间 2024 年 6 月 25 日。

Gradle 插件用于测试 JSON/XML/SOAP 等 api 的简单测试。

使用 插件 DSL

plugins {
  id("de.smartsquare.squit") version "5.2.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.smartsquare:squit:5.2.0")
  }
}

apply(plugin = "de.smartsquare.squit")

使用 插件 DSL

plugins {
  id "de.smartsquare.squit" version "5.2.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.smartsquare:squit:5.2.0"
  }
}

apply plugin: "de.smartsquare.squit"

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