搜索Gradle插件

版本 0.8.15(最新版)

0.8.15

创建于2023年2月22日。

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

使用插件DSL

plugins {
  id("io.github.reyerizo.gradle.jcstress") version "0.8.15"
}

使用旧的插件应用程序

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

apply(plugin = "io.github.reyerizo.gradle.jcstress")

使用插件DSL

plugins {
  id "io.github.reyerizo.gradle.jcstress" version "0.8.15"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.reyerizo.gradle:jcstress-gradle-plugin:0.8.15"
  }
}

apply plugin: "io.github.reyerizo.gradle.jcstress"

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