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)
Created 15 August 2024.
Automatically push the test results in real-time when the build is running on Appveyor
Add this plugin to your build using the plugins DSL:
plugins {
id("org.ysb33r.cloudci.appveyor.testreporter") version "4.0.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.ysb33r.cloudci.appveyor.testreporter:org.ysb33r.cloudci.appveyor.testreporter.gradle.plugin:4.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.ysb33r.cloudci.appveyor.testreporter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.ysb33r.cloudci.appveyor.testreporter:org.ysb33r.cloudci.appveyor.testreporter.gradle.plugin:4.0.1") } } apply(plugin = "org.ysb33r.cloudci.appveyor.testreporter")
- Applying plugins to all subprojects .