Search Gradle plugins

Version 0.8.12

Created 05 December 2021.

This plugin integrates The Java Concurrency Stress tests with Gradle.

Using the plugins DSL:

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

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects