Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Describe further parameters of the cds-services-archetype. #1589

Merged
merged 8 commits into from
Jan 29, 2025
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion java/developing-applications/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,10 @@ It supports the following command-line options:

| Option | Description |
| -- | -- |
| `-DgroupId=<a valid Maven groupId>` | The `groupId` of the Maven artifact for the new project. If not specified, Maven prompts for user input. |
| `-DartifactId=<a valid Maven artifactId>` | The `artifactId` of the Maven artifact for the new project. If not specified, Maven prompts for user input. |
| `-Dversion=<a valid Maven version>` | The `version` of the new Maven artifact for the new project. Defaults to `1.0.0-SNAPSHOT` |
smahati marked this conversation as resolved.
Show resolved Hide resolved
| `-Dpackage=<a valid Java package>` | Specifies the Java package of the originally created classes. Defaults to `${groupId}.${artifactId}`. |
mofterdinger marked this conversation as resolved.
Show resolved Hide resolved
| `-DincludeModel=true` | Adds a minimalistic sample CDS model to the project. |
| `-DincludeIntegrationTest=true` | Adds an integration test module to the project. |
| `-DodataVersion=[v2\|v4]` | Specify which protocol adapter is activated by default. |
Expand All @@ -339,7 +343,6 @@ It supports the following command-line options:
| `-Dpersistence=[true\|false]` | Specify whether persistence is enabled (`true`) or disabled (`false`). Defaults to `true`. |
| `-DcdsdkVersion=<a valid cds-dk version>` | Sets the provided cds-dk version in the project. If not specified, the default of CAP Java is used. |


## Building Projects with Maven
{ #maven-build-options }

Expand Down
Loading