18 lines
943 B
Markdown
18 lines
943 B
Markdown
### IntelliJ setup
|
|
|
|
**NB!** Please ensure that Intellij uses the same java installation as you do for building this project
|
|
from command line.
|
|
This ensures that Gradle task avoidance and build cache work properly and can greatly reduce
|
|
build time.
|
|
|
|
Suggested plugins and settings:
|
|
|
|
* Editor > Code Style > Java/Groovy > Imports
|
|
* Class count to use import with '*': `9999` (some number sufficiently large that is unlikely to matter)
|
|
* Names count to use static import with '*': `9999`
|
|
* With java use the following import layout (groovy should still use the default) to ensure consistency with google-java-format:
|
|

|
|
* [Google Java Format](https://plugins.jetbrains.com/plugin/8527-google-java-format)
|
|
* [Save Actions](https://plugins.jetbrains.com/plugin/7642-save-actions)
|
|

|