Search Gradle plugins

Version 0.8.1-SNAPSHOT

Created 15 March 2017.

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"

Learn how to apply plugins to subprojects