All Projects → JetBrains → Gradle Idea Ext Plugin

JetBrains / Gradle Idea Ext Plugin

Licence: apache-2.0
Plugin to store IJ settings in gradle script

Programming Languages

groovy
2714 projects

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.0"
}

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 full DSL documentation

Version 1.0 requires IntelliJ IDEA 2020.3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].