Search Gradle plugins

Version 1.4 (latest)

1.4

Created 29 October 2017.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.energizedwork:idea-gradle-plugins:1.4")
      }
    }
    
    apply(plugin = "com.energizedwork.idea-junit")
  • Applying plugins to all subprojects .