org.gint
Owner: Bob Swift
Gint - Gradle Integration Test and Automation Framework
Sources: https://bitbucket.org/gint_org/gint
Version 3.8.8 (latest)
3.8.8
Created 12 August 2024.
Gint - Gradle Integration Test and Automation Framework
Using the plugins DSL:
plugins {
id("org.gint") version "3.8.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gint:gint:3.8.8")
}
}
apply(plugin = "org.gint")
Using the plugins DSL:
plugins {
id "org.gint" version "3.8.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gint:gint:3.8.8"
}
}
apply plugin: "org.gint"