Skip to content
Open
Changes from all 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
4 changes: 2 additions & 2 deletions java/developing-applications/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ Using Maven profiles allows you to distinguish between builds for local developm
* Creating database-specific artifacts for different target databases
* Add Maven dependencies used only in production

Production cds build build is triggered via the parameter `--production` as [described](../../guides/deploy/build#automatic-build-tasks).
Production cds build is triggered via the parameter `--production` as [described](../../guides/deploy/build#automatic-build-tasks).

Add a Maven production profile in srv/pom.xml to override cds.build’s default non‑production build and H2 SQL generation.

Expand Down Expand Up @@ -433,7 +433,7 @@ Add a Maven production profile in srv/pom.xml to override cds.build’s default
</goals>
<configuration>
<commands>
<command>build --for java --production</command> <!-- -->
<command>build --for java --production</command>
</commands>
</configuration>
</execution>
Expand Down
Loading