com.energizedwork.idea-junit
                  Owner:
                  
                    
                    Marcin Erdmann
                  
                
A plugin that allows to control settings of default JUnit run configuration in IntelliJ.
https://github.com/energizedwork/idea-gradle-plugins#idea-base-convention-plugin
Sources: https://github.com/energizedwork/idea-gradle-plugins
Version 1.3
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.3"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.energizedwork.idea-junit:com.energizedwork.idea-junit.gradle.plugin:1.3") }It can then be applied in the precompiled script plugin:plugins { id("com.energizedwork.idea-junit") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.energizedwork.idea-junit:com.energizedwork.idea-junit.gradle.plugin:1.3") } } apply(plugin = "com.energizedwork.idea-junit")
- Applying plugins to all subprojects .