Search Gradle plugins

com.banno.gordon

Android instrumentation test runner designed for speed, simplicity, and reliability

https://github.com/Banno/Gordon

Sources: https://github.com/Banno/Gordon

Version 1.0.2

1.0.2

Created 05 November 2019.

Android instrumentation test runner designed for speed, simplicity, and reliability

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.banno.gordon") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.banno.gordon:gordon-plugin:1.0.2")
      }
    }
    
    apply(plugin = "com.banno.gordon")
  • Applying plugins to all subprojects .