The devonfw-ide
requires settings
with configuration templates for the arbitrary tools.
To get an initial set of these settings we provide the default ide-settings as an initial package. These are also released so you can download the latest stable or any history version at maven central.
To test devonfw-ide
or for very small projects you can also use these the latest default settings (just hit return when setup is asking for the Settings URL
).
However, for collaborative projects we strongly encourage you to distribute and maintain the settings via a dedicated and project specific git
repository. This gives you the freedom to control and manage the tools with their versions and configurations during the project lifecycle.
Therefore simply follow the admin usage guide.
The settings folder (see SETTINGS_PATH
) has to following file structure:
/settings ├──/ devon │ ├──/ conf │ │ ├──/ .m2 │ │ │ └── settings.xml │ │ ├──/ npm │ │ │ └── .npmrc │ │ └── devon.properties ├──/ eclipse │ ├──/ workspace │ │ ├──/ setup │ │ └──/ update │ ├── lifecycle-mapping-metadata.xml │ └── project.dictionary ├──/ ... ├──/ sonarqube │ └──/ profiles │ ├── Devon-C#.xml │ ├── ... │ └── Devon-XML.xml ├──/ vscode │ └──/ workspace │ ├──/ setup │ └──/ update └── devon.properties
As you can see the settings
folder contains sub-folders for tools of the IDE.
So the devon
folder contains devon.properties
files for the configuration of your environment.
Further, for the IDEs such as eclipse or vscode the according folders contain the templates to manage the workspace via our configurator.
Different tools and configuration files require a different handling:
-
Where suitable we directly use these configurations from your
settings
(e.g. foreclipse/lifecycle-mapping-metadata.xml
, oreclipse/project.dictionary
). -
The
devon
folder insettings
contains templates for configuration files. There are copied to thedevonfw-ide
installation during setup (if no such file already exists). This way thesettings
repository can provide reasonable defaults but allows the user to take over control and customize to his personal needs (e.g..m2/settings.xml
). -
Other configurations need to be imported manually. To avoid manual steps and simplify usage we try to automate as much as possible. This currently applies to
sonarqube
profiles but will be automated with sonar-devon4j-plugin in the future. -
For tools with complex configuration structures like eclipse, intellij, or vscode we provide a smart mechanism via our configurator.