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 0.5.5
0.5.5
Created 05 November 2024.
Gradle plugin providing default configurations for testing with ClusterFuzz.
Using the plugins DSL:
plugins {
id("com.fizzpod.clusterfuzz") version "0.5.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.fizzpod:gradle-clusterfuzz-plugin:0.5.5")
}
}
apply(plugin = "com.fizzpod.clusterfuzz")
Using the plugins DSL:
plugins {
id "com.fizzpod.clusterfuzz" version "0.5.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.fizzpod:gradle-clusterfuzz-plugin:0.5.5"
}
}
apply plugin: "com.fizzpod.clusterfuzz"