Search Gradle plugins

com.github.erdi.extended-idea

A plugin that removes the need for explicit xml manipulation when dealing with some aspects of IntelliJ project configuration.

https://github.com/erdi/idea-gradle-plugins#idea-gradle-plugins

Sources: https://github.com/erdi/idea-gradle-plugins

Version 2.1

Created 02 April 2019.

A plugin that removes the need for explicit xml manipulation when dealing with some aspects of IntelliJ project configuration.

Using the plugins DSL:

plugins {
  id("com.github.erdi.extended-idea") version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.erdi:idea-gradle-plugins:2.1")
  }
}

apply(plugin = "com.github.erdi.extended-idea")

Using the plugins DSL:

plugins {
  id "com.github.erdi.extended-idea" version "2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.erdi:idea-gradle-plugins:2.1"
  }
}

apply plugin: "com.github.erdi.extended-idea"

Learn how to apply plugins to subprojects