Proof-of-concept plugin to store arbitrary IJ settings in gradle script
as simple as
./gradlew build
Apply from Gradle plugin repository
plugins {
id "org.jetbrains.gradle.plugin.idea-ext" version "0.4.2"
}
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'
See the Wiki for documentation: DSL of version 0.1 and changes in version 0.2.
Version 0.1 requires IntelliJ IDEA 2018.1; version 0.2 requires IntelliJ IDEA 2018.2.