/gradle-idea-ext-plugin

Plugin to store IJ settings in gradle script

Primary LanguageGroovyApache License 2.0Apache-2.0

gradle-idea-ext-plugin

JetBrains team project

Plugin to store some IntelliJ IDEA settings in gradle script

How to build

as simple as

./gradlew build

How to apply

Apply from Gradle plugin repository

plugins {
  id "org.jetbrains.gradle.plugin.idea-ext" version "0.7"
}

Or build and drop resulting jar into root directory of a project and add following snippet to build.grade

buildscript {
  dependencies {
    classpath files('gradle-idea-ext.jar')
  }
}
apply plugin: 'org.jetbrains.gradle.plugin.idea-ext'

How to use

See the Wiki for documentation: DSL of version 0.1 and changes in version 0.2.

Version 0.6.1 requires IntelliJ IDEA 2019.2