diff --git a/content/en/docs/02.0/21_first-application.md b/content/en/docs/02.0/21_first-application.md index 4b5f4063..f31a71bd 100644 --- a/content/en/docs/02.0/21_first-application.md +++ b/content/en/docs/02.0/21_first-application.md @@ -32,6 +32,17 @@ mvn io.quarkus:quarkus-maven-plugin:{{% param "quarkusVersion" %}}:create \ Which creates a generated getting-started application bootstrapped for you. The application holds at the moment a rest resource called `GreetingResource.java` which exposes a REST resource for you. + +{{% alert color="primary" %}} +Be aware that if you are creating your application using GitBash the shell actually transforms the Path `/hello` to something like `/C:/Program Files/Git/hello` (due to MinGWs Posix Path Conversion). + +you can fix this if you specify the path as following: +`-Dpath="hello"` (remove slash) + +Issue: +{{% /alert %}} + + To test the application you can start the application in dev-mode by executing ```bash