com.jdfind.spoon
Owner:
Andrei N
Gradle plugin that provides a task to run Android instrumentation tests via Spoon.
https://github.com/jdfind/gradle-spoon-plugin
Sources: https://github.com/jdfind/gradle-spoon-plugin
Version 1.4.1 (latest)
Created 08 May 2018.
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.jdfind.spoon") version "1.4.1"
}
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.jdfind.spoon:com.jdfind.spoon.gradle.plugin:1.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.jdfind.spoon") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.jdfind.spoon:com.jdfind.spoon.gradle.plugin:1.4.1") } } apply(plugin = "com.jdfind.spoon")
- Applying plugins to all subprojects .