Skip to content

Commit 3351401

Browse files
authored
Merge pull request #109802 from yucwan/patch-22
deleting steps no longer needed
2 parents a9f2d0a + 3adab74 commit 3351401

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,10 @@ Maven asks you for values needed to finish generating the project on deployment.
6262
| **artifactId** | A value that is the name of the jar, without a version number. The examples in this quickstart use `fabrikam-functions`. |
6363
| **version** | Choose the default value of `1.0-SNAPSHOT`. |
6464
| **package** | A value that is the Java package for the generated function code. Use the default. The examples in this quickstart use `com.fabrikam.functions`. |
65-
| **appName** | Globally unique name that identifies your new function app in Azure. Use the default, which is the _artifactId_ appended with a random number. Make a note of this value, you'll need it later. |
66-
| **appRegion** | Choose a [region](https://azure.microsoft.com/regions/) near you or near other services your functions access. The default is `westus`. Run this [Azure CLI] command to get a list of all regions:<br/>`az account list-locations --query '[].{Name:name}' -o tsv` |
67-
| **resourceGroup** | Name for the new [resource group](../azure-resource-manager/management/overview.md) in which to create your function app. Use `myResourceGroup`, which is used by examples in this quickstart. A resource group must be unique to your Azure subscription.|
6865

6966
Type `Y` or press Enter to confirm.
7067

71-
Maven creates the project files in a new folder with a name of _artifactId_, which in this example is `fabrikam-functions`. Run the following command to change the directory to the created project folder.
68+
Maven creates the project files in a new folder with a name of **artifactId**, which in this example is `fabrikam-functions`. Run the following command to change the directory to the created project folder.
7269
```bash
7370
cd fabrikam-function
7471
```

0 commit comments

Comments
 (0)