Search Gradle plugins

com.code-intelligence.cifuzz

cifuzz is a CLI tool that helps you to integrate and run fuzzing based tests into your project.

https://www.code-intelligence.com

Sources: https://github.com/CodeIntelligenceTesting/cifuzz-gradle-plugin

Version 1.9.0 (latest)

1.9.0

Created 20 November 2023.

cifuzz is a CLI tool that helps you to integrate and run fuzzing based tests into your project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.code-intelligence.cifuzz") version "1.9.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.code-intelligence:cifuzz-gradle-plugin:1.9.0")
      }
    }
    
    apply(plugin = "com.code-intelligence.cifuzz")
  • Applying plugins to all subprojects .