ch.yvu.teststore
Owner: Yves Bonjour
Stores your test results
https://github.com/ybonjour/test-store
Sources: https://github.com/ybonjour/test-store
Using the plugins DSL:
plugins {
id("ch.yvu.teststore") version "0.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ch.yvu.teststore:gradle-plugin:0.30")
}
}
apply(plugin = "ch.yvu.teststore")
Using the plugins DSL:
plugins {
id "ch.yvu.teststore" version "0.30"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ch.yvu.teststore:gradle-plugin:0.30"
}
}
apply plugin: "ch.yvu.teststore"