Vampire / gradle-idea-ext-plugin

Plugin to store IJ settings in gradle script

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Plugin to store IJ settings in gradle script

License:Apache License 2.0


Languages

Language:Groovy 76.5%Language:Kotlin 22.7%Language:Java 0.7%