Search Gradle plugins

Version 0.0.2

Created 14 March 2019.

A plugin that wrapps the android-test-runner

Using the plugins DSL:

plugins {
  id("ch.atr.gradle-plugin") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ch.atr.gradle:gradle-plugin:0.0.2")
  }
}

apply(plugin = "ch.atr.gradle-plugin")

Using the plugins DSL:

plugins {
  id "ch.atr.gradle-plugin" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ch.atr.gradle:gradle-plugin:0.0.2"
  }
}

apply plugin: "ch.atr.gradle-plugin"

Learn how to apply plugins to subprojects