Search Gradle plugins

Version 1.1

Created 06 January 2017.

A plugin that allows to control settings of default JUnit run configuration in IntelliJ.

Using the plugins DSL:

plugins {
  id("com.energizedwork.idea-junit") version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.energizedwork:idea-gradle-plugins:1.1")
  }
}

apply(plugin = "com.energizedwork.idea-junit")

Using the plugins DSL:

plugins {
  id "com.energizedwork.idea-junit" version "1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.energizedwork:idea-gradle-plugins:1.1"
  }
}

apply plugin: "com.energizedwork.idea-junit"

Learn how to apply plugins to subprojects