com.fizzpod.clusterfuzz
Owner: andy.j.dunn
Gradle plugin providing default configurations for testing with ClusterFuzz.
https://github.com/boxheed/gradle-clusterfuzz-plugin
Sources: https://github.com/boxheed/gradle-clusterfuzz-plugin
Version 1.1.2 (latest)
Created 17 December 2024.
Gradle plugin providing default configurations for testing with ClusterFuzz.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.fizzpod.clusterfuzz") version "1.1.2"
}
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.fizzpod.clusterfuzz:com.fizzpod.clusterfuzz.gradle.plugin:1.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.fizzpod.clusterfuzz") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fizzpod.clusterfuzz:com.fizzpod.clusterfuzz.gradle.plugin:1.1.2") } } apply(plugin = "com.fizzpod.clusterfuzz")
- Applying plugins to all subprojects .