azure-maven-plugins icon indicating copy to clipboard operation
azure-maven-plugins copied to clipboard

Can't access url when deploy with jboss

Open pl07 opened this issue 4 years ago • 1 comments

Plugin name and version

Azure-webapp-maven-plugin:1.13.0

Plugin configuration in your pom.xml

<plugin> 
 <groupId>com.microsoft.azure</groupId> 
 <artifactId>azure-webapp-maven-plugin</artifactId> 
 <version>1.13.0</version> 
 <configuration> 
 <schemaVersion>v2</schemaVersion> 
 <resourceGroup>test123</resourceGroup> 
 <appName>test123</appName> 
 <pricingTier>P1v2</pricingTier> 
 <region>westeurope</region> 
 <runtime>
 <os>Linux</os>
 <javaVersion>Java 8</javaVersion>
 <webContainer>Jbosseap 7.2</webContainer>
 </runtime>
 <deployment> 
 <resources> 
 <resource> 
 <directory>${project.basedir}/target</directory> 
 <includes> 
 <include>*.war</include> 
 </includes> 
 </resource>
 </resources> 
 </deployment> 
 </configuration> 
</plugin>

Actual behavior

image

pl07 avatar Feb 05 '21 09:02 pl07

I can open the url of a simple hello world web app when trying to reproduce this issue with

wangmingliang-ms avatar Sep 20 '22 06:09 wangmingliang-ms