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.8.0-beta03

1.8.0-beta03

Created 12 July 2021.

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.8.0-beta03"
}

See also:

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