Search Gradle plugins

Version 5.1.0 (latest)

Created 11 September 2023.

Gradle plugin for simple testing of JSON/XML/SOAP/etc APIs.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "de.smartsquare.squit"

Learn how to apply plugins to subprojects