Skip to content

Commit 8e5c2fb

Browse files
committed
Revert uncessary change
1 parent adaa5d4 commit 8e5c2fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-create-first-azure-function-azure-cli.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ Provide the following values when prompted:
9797

9898
| Prompt | Value | Description |
9999
| ------ | ----- | ----------- |
100-
| **groupId** | `com.functions` | A value that uniquely identifies your project across all projects, following the [package naming rules](https://docs.oracle.com/javase/specs/jls/se6/html/packages.html#7.7) for Java. |
101-
| **artifactId** | `azure-functions-sample` | A value that is the name of the jar, without a version number. |
100+
| **groupId** | `com.fabrikam` | A value that uniquely identifies your project across all projects, following the [package naming rules](https://docs.oracle.com/javase/specs/jls/se6/html/packages.html#7.7) for Java. |
101+
| **artifactId** | `fabrikam-functions` | A value that is the name of the jar, without a version number. |
102102
| **version** | `1.0-SNAPSHOT` | Choose the default value. |
103-
| **package** | `com.functions` | A value that is the Java package for the generated function code. Use the default. |
103+
| **package** | `com.fabrikam` | A value that is the Java package for the generated function code. Use the default. |
104104

105105
Type `Y` or press Enter to confirm.
106106

107-
Maven creates the project files in a new folder with a name of _artifactId_, which in this example is `azure-functions-sample`.
107+
Maven creates the project files in a new folder with a name of _artifactId_, which in this example is `fabrikam-functions`.
108108
::: zone-end
109109
Navigate into the project folder:
110110

@@ -115,7 +115,7 @@ cd LocalFunctionProj
115115
::: zone-end
116116
::: zone pivot="programming-language-java"
117117
```
118-
cd azure-functions-sample
118+
cd fabrikam-functions
119119
```
120120
::: zone-end
121121
This folder contains various files for the project, including configurations files named [local.settings.json](functions-run-local.md#local-settings-file) and [host.json](functions-host-json.md). Because *local.settings.json* can contain secrets downloaded from Azure, the file is excluded from source control by default in the *.gitignore* file.

0 commit comments

Comments
 (0)