Skip to content

Commit 9927dda

Browse files
Added quotation marks for cmd on Windows
On Windows you have to put the parameters of mvn archetype:generate command into quotation marks to get things working.
1 parent b5d2b4e commit 9927dda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-create-first-java-maven.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ mvn archetype:generate `
5555

5656
```cmd
5757
mvn archetype:generate ^
58-
-DarchetypeGroupId=com.microsoft.azure ^
59-
-DarchetypeArtifactId=azure-functions-archetype
58+
"-DarchetypeGroupId=com.microsoft.azure" ^
59+
"-DarchetypeArtifactId=azure-functions-archetype"
6060
```
6161

6262
Maven will ask you for values needed to finish generating the project. For _groupId_, _artifactId_, and _version_ values, see the [Maven naming conventions](https://maven.apache.org/guides/mini/guide-naming-conventions.html) reference. The _appName_ value must be unique across Azure, so Maven generates an app name based on the previously entered _artifactId_ as a default. The _packageName_ value determines the Java package for the generated function code.

0 commit comments

Comments
 (0)