io.github.kranberry-io.runtests
Owner: Angelica Oliveira
Plugin that gives the ability of running kranberry tests in a easy way
https://github.com/kranberry-io
Sources: https://github.com/kranberry-io/kranberry
Version 1.0.5-beta (latest)
1.0.5-beta
Created 23 November 2021.
Plugin that gives the ability of running kranberry tests in a easy way
Using the plugins DSL:
plugins {
id("io.github.kranberry-io.runtests") version "1.0.5-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.kranberry-io:runtests:1.0.5-beta")
}
}
apply(plugin = "io.github.kranberry-io.runtests")
Using the plugins DSL:
plugins {
id "io.github.kranberry-io.runtests" version "1.0.5-beta"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.kranberry-io:runtests:1.0.5-beta"
}
}
apply plugin: "io.github.kranberry-io.runtests"