IntelliJ Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 39: Line 39:
All XML files under <tt>.idea/libraries</tt> will be generated by the Gradle or the Maven project.
All XML files under <tt>.idea/libraries</tt> will be generated by the Gradle or the Maven project.


==gradle.xml==
Gradle settings.
==What to Share in a SVC System==


These are some recommendations on what to share and what not to share in a SVC system. The article applies to Git, but the rules are generally valid:
These are some recommendations on what to share and what not to share in a SVC system. The article applies to Git, but the rules are generally valid:


{{Internal|Git and IntelliJ IDEA#Overview|Git and IntelliJ IDEA}}
{{Internal|Git and IntelliJ IDEA#Overview|Git and IntelliJ IDEA}}

Revision as of 18:05, 10 May 2018

External

Internal

Module

Grouping Modules

https://www.jetbrains.com/help/idea/creating-and-managing-modules.html#grouping-modules

.idea Directory

The .idea directory is used by IntelliJ to store project-related configuration metadata, and it is collocated with the project. It lives by default under the project's root. It contains the following file:

User-Specific Settings

workspace.xml

Stores user-specific settings.

tasks.xml

User Dictionaries

Maintained in .idea/dictionaries/username.xml.

shelf

datasources.xml

In IDEA 13 or earlier, datasources.xml contains user passwords.

libraries

All XML files under .idea/libraries will be generated by the Gradle or the Maven project.

gradle.xml

Gradle settings.

What to Share in a SVC System

These are some recommendations on what to share and what not to share in a SVC system. The article applies to Git, but the rules are generally valid:

Git and IntelliJ IDEA