Skip to content

Commit 22eaf84

Browse files
authored
Merge pull request #26287 from kamil-mrzyglod/patch-2
Added quotation marks for cmd on Windows
2 parents 1015971 + 9927dda commit 22eaf84

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
@@ -58,8 +58,8 @@ mvn archetype:generate `
5858

5959
```cmd
6060
mvn archetype:generate ^
61-
-DarchetypeGroupId=com.microsoft.azure ^
62-
-DarchetypeArtifactId=azure-functions-archetype
61+
"-DarchetypeGroupId=com.microsoft.azure" ^
62+
"-DarchetypeArtifactId=azure-functions-archetype"
6363
```
6464

6565
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)