com.github.erizo.gradle.jcstress
Owner: Jerzy Krolak
Jcstress gradle plugin
https://github.com/jerzykrlk/jcstress-gradle-plugin
Sources: https://github.com/jerzykrlk/jcstress-gradle-plugin
Using the plugins DSL:
plugins {
id("com.github.erizo.gradle.jcstress") version "0.8.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.erizo.gradle:jcstress-gradle-plugin:0.8.1-SNAPSHOT")
}
}
apply(plugin = "com.github.erizo.gradle.jcstress")
Using the plugins DSL:
plugins {
id "com.github.erizo.gradle.jcstress" version "0.8.1-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.erizo.gradle:jcstress-gradle-plugin:0.8.1-SNAPSHOT"
}
}
apply plugin: "com.github.erizo.gradle.jcstress"