Skip to content

Commit 7b03d28

Browse files
committed
Fix markup
1 parent 5fed059 commit 7b03d28

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

java/developing-applications/building.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -457,6 +457,8 @@ Other options in this goal enable or disable certain features that change the wa
457457
```java
458458
void setManager(Map<String, ?> manager); // [!code --]
459459
void setManager(Manager manager); // [!code ++]
460+
```
461+
460462
It does not introduce any additional type checks at runtime, the correctness of the assignment is checked only at the time of compilation.
461463

462464
- [`interfacesForAspects`](/java/assets/cds-maven-plugin-site/generate-mojo.html#interfacesForAspects)
@@ -479,7 +481,7 @@ Other options in this goal enable or disable certain features that change the wa
479481
- Leading `_` will remain in the name after conversions. This supports conventions where an association and its foreign key have names like `_assoc` and `assoc`.
480482
These conversions no longer influence the splitting.
481483

482-
- ['cqnServiceGetters'](/java/assets/cds-maven-plugin-site/generate-mojo.html#cqnServiceGetters)
484+
- [`cqnServiceGetters`](/java/assets/cds-maven-plugin-site/generate-mojo.html#cqnServiceGetters)
483485

484486
The method `getService()` in generated [event-specific Event Context interfaces](../event-handlers/#eventcontext) is overridden to return the typed service interface instead of the generic `Service` type.
485487

@@ -517,7 +519,7 @@ Following levels of the details are available:
517519

518520
- `NONE` - no `@Generated` annotation is added. This is not recommended.
519521

520-
### Using a Local cds-dk
522+
## Using a Local cds-dk
521523

522524
Starting with version 3.6.0 of the `cds-services-archetype`, the default setup of a newly created CAP Java project has changed. The `@sap/cds-dk` is maintained as a `devDependency` in `package.json` and installed with an `npm ci` during the Maven build.
523525
The `install-cdsdk` goal is no longer used to install the `@sap/cds-dk` locally and it's also marked as deprecated. The version of the `@sap/cds-dk` is no longer maintained in _pom.xml_, it's configured in the _package.json_:
@@ -534,7 +536,7 @@ A `package-lock.json` is also created during project creation with the `cds-serv
534536
For multitenant applications, ensure that the `@sap/cds-dk` version in the sidecar is in sync.
535537
:::
536538

537-
#### Migrate From Goal `install-cdsdk` to `npm ci`
539+
### Migrate From Goal `install-cdsdk` to `npm ci`
538540
{ #migration-install-cdsdk }
539541

540542
To migrate from the deprecated goal `install-cdsdk` to the new `npm ci` approach, the following steps are required:

0 commit comments

Comments
 (0)