io.github.reyerizo.gradle.jcstress
Owner: Jerzy Krolak
This plugin integrates The Java Concurrency Stress tests with Gradle.
https://github.com/reyerizo/jcstress-gradle-plugin
Sources: https://github.com/reyerizo/jcstress-gradle-plugin
Version 0.8.15 (latest)
0.8.15
Created 22 February 2023.
This plugin integrates The Java Concurrency Stress tests with Gradle.
Using the plugins DSL:
plugins {
id("io.github.reyerizo.gradle.jcstress") version "0.8.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.reyerizo.gradle:jcstress-gradle-plugin:0.8.15")
}
}
apply(plugin = "io.github.reyerizo.gradle.jcstress")
Using the plugins DSL:
plugins {
id "io.github.reyerizo.gradle.jcstress" version "0.8.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.reyerizo.gradle:jcstress-gradle-plugin:0.8.15"
}
}
apply plugin: "io.github.reyerizo.gradle.jcstress"