Skip to content

JetBrains/gradle-idea-ext-plugin

Repository files navigation

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 "1.1.8"
}

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

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

How to use

See the Wiki for full DSL documentation

Version 1.0 requires IntelliJ IDEA 2020.3