This folder contains configurations for your IDE:
/ conf
├──/ mvn
│ ├──/ repository
│ │ ├──/ ant
│ │ ├──/ ...
│ │ └──/ zw
│ ├── settings-security.xml
│ └── settings.xml
├──/ npm
└──/ ...The mvn folder is used for configurations of maven.
It may contain the local repository folder used as cache for artifacts downloaded and installed by maven (see also maven repositories).
Further, there are two configuration files for maven:
-
settings.xml initialized from a template from your
IDEasysettings. You may customize this to your needs (configuring HTTP proxies, credentials, or other user-specific settings). Secrets can be specified as$[«variable.name»]and will be prompted, encrypted and replaced automatically during the setup (unless in batch mode). Please note that this process is skipped in batch mode and also if you use the default settings URL (for simplicity of testing). To make use of this feature simply fork or copy the settings to your own git repo. In case your credentials have changed or you made a typo, you can simply redo this step by first moving your${IDE_HOME}/conf/.m2/settings.xmlfile to a temporary folder and then callingide install mvn. -
settings-security.xml is auto-generated for you by
IDEasywith a random password. This should make it easier forIDEasyusers to use password encryption and never add passwords in plain text for better security.