Search Gradle plugins

Version 0.8.4

Created 20 September 2020.

This plugin integrates The Java Concurrency Stress tests with Gradle.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects