io.github.zeroarst.QTMGradlePlugin
Owner: Roy Liao
Ship high quality products, faster by linking automated test results from Gradle to QMetry Test Management.
https://github.com/zeroarst/qmetry-test-management-gradle-plugin
Sources: https://github.com/zeroarst/qmetry-test-management-gradle-plugin.git
Version 0.1.7 (latest)
0.1.7
Created 09 October 2023.
Ship high quality products, faster by linking automated test results from Gradle to QMetry Test Management.
Using the plugins DSL:
plugins {
id("io.github.zeroarst.QTMGradlePlugin") version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.zeroarst:QTMGradlePlugin:0.1.7")
}
}
apply(plugin = "io.github.zeroarst.QTMGradlePlugin")
Using the plugins DSL:
plugins {
id "io.github.zeroarst.QTMGradlePlugin" version "0.1.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.zeroarst:QTMGradlePlugin:0.1.7"
}
}
apply plugin: "io.github.zeroarst.QTMGradlePlugin"