com.jaredsburrows.spoon
Owner:
Jared Burrows
Gradle plugin that provides a task to run Android instrumentation tests via Spoon.
https://github.com/jaredsburrows/gradle-spoon-plugin
Sources: https://github.com/jaredsburrows/gradle-spoon-plugin
Version 1.6.0 (latest)
Created 27 April 2022.
Gradle plugin that provides a task to run Android instrumentation tests via Spoon.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.jaredsburrows.spoon") version "1.6.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.jaredsburrows.spoon:com.jaredsburrows.spoon.gradle.plugin:1.6.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.jaredsburrows.spoon") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jaredsburrows.spoon:com.jaredsburrows.spoon.gradle.plugin:1.6.0") } } apply(plugin = "com.jaredsburrows.spoon")
- Applying plugins to all subprojects .