io.github.reyerizo.gradle.jcstress
所有者: Jerzy Krolak
此插件将Java并发压力测试与Gradle集成。
https://github.com/reyerizo/jcstress-gradle-plugin
来源:https://github.com/reyerizo/jcstress-gradle-plugin
使用插件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"