Search Gradle plugins

Version 0.8.5

Created 08 October 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.5"
}

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.5")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects