Skip to content

Commit fc7c446

Browse files
authored
Update projects.asciidoc: adjusted to IDEasy
1 parent 9efaf92 commit fc7c446

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

documentation/projects.asciidoc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ toc::[]
33

44
= Project import
55

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:
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:
79

810
[source, properties]
911
----
@@ -28,11 +30,8 @@ active=true
2830
|`git_url`|e.g. `http://github.com/someorg/someproject`|(required) Git URL to use for cloning the project.
2931
|`git_branch`|e.g. `develop`|(optional) Git branch to checkout. Git default branch is default.
3032
|`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.
31-
|`build_cmd`
32-
|e.g. `mvn -D skip Tests=true -Darchetype.test.skip=true clean install`
33-
|(optional) The _devonfw_ command to invoke to build the project after clone or pull. If omitted no build is triggered.
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.
3434
|`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.
3535
|`active`|`true`|(optional) If set to `false` the project is skipped during the link:setup.asciidoc[setup].
3636
|===
3737

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

Comments
 (0)