Skip to content

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

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

About

Plugin to store IJ settings in gradle script

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Groovy 76.3%
  • Kotlin 23.0%
  • Java 0.7%