Skip to content

Commit

Permalink
Merge pull request #2486 from robertmcnees/documentation_update
Browse files Browse the repository at this point in the history
Update azure-webapp-maven-plugin documentation to use the latest version
  • Loading branch information
wangmingliang-ms authored Aug 28, 2024
2 parents cfcc5b9 + 774cdf7 commit 98ec6e4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions azure-webapp-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Maven plugins supports Azure Cli and some other auth methods, see [Authenticatio
You can prepare your application for Azure Web App easily with one command:

```shell
mvn com.microsoft.azure:azure-webapp-maven-plugin:2.9.0:config
mvn com.microsoft.azure:azure-webapp-maven-plugin:2.13.0:config
```

This command adds an `azure-webapp-maven-plugin` plugin and related configuration by prompting you to select an existing Azure Web App or create a new one. Then you can deploy your Java app to Azure using the following command:
Expand All @@ -39,8 +39,9 @@ Here is a typical configuration for Azure Web App Maven Plugin:
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>2.9.0</version>
<version>2.13.0</version>
<configuration>
<schemaVersion>v2</schemaVersion>
<subscriptionId>111111-11111-11111-1111111</subscriptionId>
<resourceGroup>spring-boot-xxxxxxxxxx-rg</resourceGroup>
<appName>spring-boot-xxxxxxxxxx</appName>
Expand All @@ -49,7 +50,7 @@ Here is a typical configuration for Azure Web App Maven Plugin:
<runtime>
<os>Linux</os>
<webContainer>Java SE</webContainer>
<javaVersion>Java 11</javaVersion>
<javaVersion>Java 17</javaVersion>
</runtime>
<deployment>
<resources>
Expand Down

0 comments on commit 98ec6e4

Please sign in to comment.