Skip to content

lynxSven/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.7"
}

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

About

Plugin to store IJ settings in gradle script

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Groovy 76.6%
  • Kotlin 22.7%
  • Java 0.7%