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/app-service/containers/quickstart-java.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,11 @@ The deploy process to Azure App Service uses account credentials from the Azure
49
49
az login
50
50
```
51
51
52
-
Then you can configure the deployment, run the maven command `mvn com.microsoft.azure:azure-webapp-maven-plugin:1.8.0:config` in the Command Prompt and use the default configurations by pressing **ENTER** until you get the **Confirm (Y/N)** prompt, then press **'y'** and the configuration is done.
52
+
Then you can configure the deployment, run the maven command in the Command Prompt and use the default configurations by pressing **ENTER** until you get the **Confirm (Y/N)** prompt, then press **'y'** and the configuration is done.
@@ -101,6 +105,9 @@ Navigate to `pom.xml` again to see the plugin configuration is updated, You can
101
105
[`<runtime>`](/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme#runtimesetting) | true | The runtime environment configuration, you could see the detail [here](/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme#runtimesetting). | 0.1.0+
102
106
[`<deployment>`](/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme#deploymentsetting) | true | The deployment configuration, you could see the details [here](/java/api/overview/azure/maven/azure-webapp-maven-plugin/readme#deploymentsetting). | 0.1.0+
103
107
108
+
> [!div class="nextstepaction"]
109
+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=app-service-linux-quickstart&step=config)
110
+
104
111
## Deploy the app
105
112
106
113
Deploy your Java app to Azure using the following command:
@@ -115,9 +122,12 @@ Once deployment has completed, browse to the deployed application using the foll
115
122
116
123
**Congratulations!** You've deployed your first Java app to App Service on Linux.
117
124
125
+
> [!div class="nextstepaction"]
126
+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=app-service-linux-quickstart&step=deploy)
127
+
118
128
## Clean up resources
119
129
120
-
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group by running the following command in the Cloud Shell:
130
+
In the preceding steps, you created Azure resources in a resource group. If you don't expect to need these resources in the future, delete the resource group from portal, or by running the following command in the Cloud Shell:
121
131
122
132
```azurecli-interactive
123
133
az group delete --name <your resource group name; for example: helloworld-1558400876966-rg> --yes
@@ -138,3 +148,6 @@ This command may take a minute to run.
138
148
139
149
> [!div class="nextstepaction"]
140
150
> [Other Azure for Java Developers Resources](/java/azure/)
151
+
152
+
> [!div class="nextstepaction"]
153
+
> [Learn More about Maven plugins for Azure](https://github.com/microsoft/azure-maven-plugins)
0 commit comments