From 6c3da452abb1f2249703ba0e7c2288899546533e Mon Sep 17 00:00:00 2001 From: Denis Fuenzalida Date: Fri, 4 Jun 2021 12:09:27 -0700 Subject: [PATCH] Update instructions * Remove the HTTP port: As per the latest change in `application.properties` the web app won't listen on port 8080 but on port 80 which is the default and can be removed * Update the plugin version, add a link to the Maven Central search site: https://search.maven.org/ --- maven-deployment/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maven-deployment/README.md b/maven-deployment/README.md index 59b41cb..7d60c29 100644 --- a/maven-deployment/README.md +++ b/maven-deployment/README.md @@ -18,7 +18,7 @@ First, test that the application builds and runs successfully. java -jar ./target/app.jar ``` -1. Open your browser and navigate to `http://localhost:8080/`. (Try `http://127.0.0.1:8080/` if the first link does not work.) You should see a simple web page with green text displaying, "Hello App Service!" +1. Open your browser and navigate to `http://localhost/`. (Try `http://127.0.0.1/` if the first link does not work.) You should see a simple web page with green text displaying, "Hello App Service!" ## Deploying to App Service with Maven @@ -30,8 +30,8 @@ Now that we have confirmed the JAR runs locally, we will deploy and run this app com.microsoft.azure azure-webapp-maven-plugin - - 1.5.3 + + 1.15.0 ```