From 5a7017cf36bc0d8980e69863169f46c4f3ff1a95 Mon Sep 17 00:00:00 2001 From: Andre Meyering Date: Wed, 26 Jun 2024 15:53:27 +0200 Subject: [PATCH] docs(Hello World): Simplify watch command for Java It is way easier to remember `mvn cds:watch` inside `srv/` than it is to remember the whole plugin name. Let's make the Java guide as easy as the Node one! --- get-started/hello-world.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/get-started/hello-world.md b/get-started/hello-world.md index d41997246..4cea07d04 100644 --- a/get-started/hello-world.md +++ b/get-started/hello-world.md @@ -146,7 +146,8 @@ cds watch
```sh -mvn com.sap.cds:cds-maven-plugin:watch +cd srv +mvn cds:watch ```