Search Gradle plugins

Version 2.3

Created 23 June 2018.

Automatically push the test results in real-time when the build is runnign on Appveyor

Using the plugins DSL:

plugins {
  id("org.ysb33r.cloudci.appveyor.testreporter") version "2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.ysb33r.gradle:gradle-cloudci-plugin:2.3")
  }
}

apply(plugin = "org.ysb33r.cloudci.appveyor.testreporter")

Using the plugins DSL:

plugins {
  id "org.ysb33r.cloudci.appveyor.testreporter" version "2.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.ysb33r.gradle:gradle-cloudci-plugin:2.3"
  }
}

apply plugin: "org.ysb33r.cloudci.appveyor.testreporter"

Learn how to apply plugins to subprojects