org.ysb33r.cloudci.appveyor.testreporter
Owner: Schalk Cronjé
Automatically push the test results in real-time when the build is runnign on Appveyor
https://github.com/ysb33r/gradle-cloudci-plugin
Sources: https://github.com/ysb33r/gradle-cloudci-plugin.git
Version 4.0.1 (latest)
4.0.1
Created 15 August 2024.
Automatically push the test results in real-time when the build is running on Appveyor
Using the plugins DSL:
plugins {
id("org.ysb33r.cloudci.appveyor.testreporter") version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.ysb33r.gradle:gradle-cloudci-plugin:4.0.1")
}
}
apply(plugin = "org.ysb33r.cloudci.appveyor.testreporter")
Using the plugins DSL:
plugins {
id "org.ysb33r.cloudci.appveyor.testreporter" version "4.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.ysb33r.gradle:gradle-cloudci-plugin:4.0.1"
}
}
apply plugin: "org.ysb33r.cloudci.appveyor.testreporter"