Search Gradle plugins

Version 1.0

Created 16 December 2016.

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.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects