You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-create-maven-eclipse.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,15 +39,15 @@ It's highly recommended to also install [Azure Functions Core Tools, version 2](
39
39
40
40
## Create a Functions project
41
41
42
-
1. In Eclipse, select the **File** menu, then select **Project**.
43
-
1. Open the **Java Project** folder in the **New Project** window and select **Maven Project**, then select **Next**.
42
+
1. In Eclipse, select the **File** menu, then select **New -> Maven Project**.
44
43
1. Accept the defaults in the **New Maven Project** dialogue and select **Next**.
45
44
1. Select **Add Archetype** and add the entries for the [azure-functions-archetype](https://mvnrepository.com/artifact/com.microsoft.azure/azure-functions-archetype).
1. Click **OK** and enter details for current project, and eventually **Finish**.
49
+
1. Click **OK** and then click **Next** to enter values like the following snapshot(please use a different appName other than **fabrikam-function-20170920120101928**), and eventually **Finish**.
Maven creates the project files in a new folder with a name of _artifactId_. The generated code in the project is a simple [HTTP triggered](/azure/azure-functions/functions-bindings-http-webhook) function that echoes the body of the triggering HTTP request.
53
53
@@ -64,7 +64,7 @@ Terminate the runtime in the console window when you're done testing your functi
64
64
65
65
### Debug the function in Eclipse
66
66
67
-
In your **Run As** configuration set up in the previous step, change `azure-functions:run` to `mvn azure-functions:run -DenableDebug` and run the updated configuration to start the function app in debug mode.
67
+
In your **Run As** configuration set up in the previous step, change `azure-functions:run` to `azure-functions:run -DenableDebug` and run the updated configuration to start the function app in debug mode.
68
68
69
69
Select the **Run** menu and open **Debug Configurations**. Choose **Remote Java Application** and create a new one. Give your configuration a name and fill in the settings. The port should be consistent with the debug port opened by function host, which by default is `5005`. After setup, click on `Debug` to start debugging.
0 commit comments