com.github.erdi.extended-idea
Owner: Marcin Erdmann
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.2 (latest)
2.2
Created 22 December 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.2"
}
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.2")
}
}
apply(plugin = "com.github.erdi.extended-idea")
Using the plugins DSL:
plugins {
id "com.github.erdi.extended-idea" version "2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.erdi:idea-gradle-plugins:2.2"
}
}
apply plugin: "com.github.erdi.extended-idea"