de.smartsquare.squit
Owner:
Smartquare GmbH
Gradle plugin for testing Xml/Soap based apis.
https://github.com/SmartsquareGmbH/squit
Version 5.0.2 (latest)
Created 11 November 2021.
Gradle plugin for simple testing of JSON/XML/SOAP/etc APIs.
Using the plugins DSL:
plugins {
id("de.smartsquare.squit") version "5.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.smartsquare:squit:5.0.2")
}
}
apply(plugin = "de.smartsquare.squit")
Using the plugins DSL:
plugins {
id "de.smartsquare.squit" version "5.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.smartsquare:squit:5.0.2"
}
}
apply plugin: "de.smartsquare.squit"