搜索 Gradle 插件

版本 0.3.26(最新版本)

0.3.26

创建日期:2024年6月28日。

Gradle 插件,提供用于 ClusterFuzz 测试的默认配置。

使用插件 DSL

plugins {
  id("com.fizzpod.clusterfuzz") version "0.3.26"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.fizzpod:gradle-clusterfuzz-plugin:0.3.26")
  }
}

apply(plugin = "com.fizzpod.clusterfuzz")

使用插件 DSL

plugins {
  id "com.fizzpod.clusterfuzz" version "0.3.26"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.fizzpod:gradle-clusterfuzz-plugin:0.3.26"
  }
}

apply plugin: "com.fizzpod.clusterfuzz"

了解如何将插件应用到子项目中