Skip to content

Commit 6ccda16

Browse files
authored
Merge pull request #97371 from yucwan/patch-2
Minor changes and Issues collection by steps
2 parents 2882c0e + 865f6bf commit 6ccda16

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

articles/app-service/containers/quickstart-java.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ The deploy process to Azure App Service uses account credentials from the Azure
4949
az login
5050
```
5151

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.
53+
```cmd
54+
mvn com.microsoft.azure:azure-webapp-maven-plugin:1.8.0:config
55+
```
56+
A sample process looks like:
5357

5458
```cmd
5559
~@Azure:~/helloworld$ mvn com.microsoft.azure:azure-webapp-maven-plugin:1.8.0:config
@@ -101,6 +105,9 @@ Navigate to `pom.xml` again to see the plugin configuration is updated, You can
101105
[`<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+
102106
[`<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+
103107

108+
> [!div class="nextstepaction"]
109+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=app-service-linux-quickstart&step=config)
110+
104111
## Deploy the app
105112

106113
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
115122

116123
**Congratulations!** You've deployed your first Java app to App Service on Linux.
117124

125+
> [!div class="nextstepaction"]
126+
> [I ran into an issue](https://www.research.net/r/javae2e?tutorial=app-service-linux-quickstart&step=deploy)
127+
118128
## Clean up resources
119129

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:
121131

122132
```azurecli-interactive
123133
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.
138148
139149
> [!div class="nextstepaction"]
140150
> [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

Comments
 (0)