Search Gradle plugins

Version 1.0.113

1.0.113

Created 12 February 2019.

Plugin that configures 'idea' plugin if it's applied.

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.remal.idea-settings") version "1.0.113"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.remal:gradle-plugins:1.0.113")
      }
    }
    
    apply(plugin = "name.remal.idea-settings")
  • Applying plugins to all subprojects .