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