You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/projects.asciidoc
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,7 @@ toc::[]
3
3
4
4
= Project import
5
5
6
-
`IDEasy` supports to automatically check out and import required git repositories (with your source code) into your IDE during link:setup.asciidoc[setup].
7
-
To configure this you put a `.properties` file for each desired project into the `repositories` sub-folder in your link:settings.asciidoc[settings].
8
-
Each `.properties` file describes one "repository" which you would like to check out and (potentially) import:
6
+
The `devonfw-ide` supports to automatically check out and import required projects into your IDE during link:setup.asciidoc[setup]. To configure this you put a `.properties` file for each desired project into the `projects` sub-folder in your link:settings.asciidoc[settings]. Each `.properties` file describes one "project" which you would like to check out and (potentially) import:
9
7
10
8
[source, properties]
11
9
----
@@ -30,8 +28,11 @@ active=true
30
28
|`git_url`|e.g. `http://github.com/someorg/someproject`|(required) Git URL to use for cloning the project.
31
29
|`git_branch`|e.g. `develop`|(optional) Git branch to checkout. Git default branch is default.
32
30
|`build_path`|e.g. `.` (default)|(optional) The directory inside `path` where to trigger an initial build after clone or pull (if `build_cmd` is set). For a regular project use `.` to build top-level project.
33
-
|`build_cmd` |e.g. `mvn -D skip Tests=true -Darchetype.test.skip=true clean install` |(optional) The _devonfw_ command to invoke to build the project after clone or pull. If omitted no build is triggered.
|(optional) The _devonfw_ command to invoke to build the project after clone or pull. If omitted no build is triggered.
34
34
|`eclipse`|e.g. `import`|(optional) Desired action for eclipse IDE. If you put `import` here all modules (eclipse projects) in the current project will be imported into eclipse. If you leave this out or put any other value for this parameter, no change in eclipse is done.
35
35
|`active`|`true`|(optional) If set to `false` the project is skipped during the link:setup.asciidoc[setup].
36
36
|===
37
37
38
+
Please note that the `.properties` file is parsed via shell and not via java. So be careful with "advanced" features `.properties` files normally support.
0 commit comments