搜索 Gradle 插件

版本 0.8.8(最新版)

0.8.8

创建于 2021 年 1 月 31 日。

此插件将 Java 并发压力测试与 Gradle 集成。

使用 插件 DSL

plugins {
  id("com.github.erizo.gradle.jcstress") version "0.8.8"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.erizo.gradle:jcstress-gradle-plugin:0.8.8")
  }
}

apply(plugin = "com.github.erizo.gradle.jcstress")

使用 插件 DSL

plugins {
  id "com.github.erizo.gradle.jcstress" version "0.8.8"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.erizo.gradle:jcstress-gradle-plugin:0.8.8"
  }
}

apply plugin: "com.github.erizo.gradle.jcstress"

学习如何将插件应用于子项目