ch.atr.gradle-plugin
Owner: Stefan Schmid
A plugin that wrapps the android-test-runner
https://github.com/android-test-runner
Sources: https://github.com/android-test-runner/gradle-plugin
Version 0.1.2 (latest)
0.1.2
Created 22 February 2021.
A plugin that wrapps the android-test-runner
Using the plugins DSL:
plugins {
id("ch.atr.gradle-plugin") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.atr.gradle:gradle-plugin:0.1.2")
}
}
apply(plugin = "ch.atr.gradle-plugin")
Using the plugins DSL:
plugins {
id "ch.atr.gradle-plugin" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.atr.gradle:gradle-plugin:0.1.2"
}
}
apply plugin: "ch.atr.gradle-plugin"