Search Gradle plugins

Version 0.32.0

0.32.0

Created 13 October 2017.

Plugin that applies idea plugin and configures IDEA project configs.

Add this plugin to your build using the plugins DSL:

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

See also:

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