Search Gradle plugins

org.jetbrains.gradle.plugin.idea-ext

Extends the Gradle's "idea" DSL with specific settings: code style, facets, run configurations etc.

https://github.com/jetbrains/gradle-idea-ext-plugin

Sources: https://github.com/jetbrains/gradle-idea-ext-plugin

Version 1.1.9 (latest)

1.1.9

Created 23 September 2024.

Extends the Gradle's "idea" DSL with specific settings: code style, facets, run configurations etc.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.gradle.plugin.idea-ext") version "1.1.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.1.9")
      }
    }
    
    apply(plugin = "org.jetbrains.gradle.plugin.idea-ext")
  • Applying plugins to all subprojects .