-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
35 lines (35 loc) · 1.33 KB
/
Copy pathpom.xml
File metadata and controls
35 lines (35 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<plugins>
<!--*************************************************-->
<!-- Deploy to Tomcat in App Service Windows -->
<!--*************************************************-->
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>1.8.0</version>
<configuration>
<!-- Specify v2 schema -->
<schemaVersion>v2</schemaVersion>
<!-- App information -->
<subscriptionId>SUBSCRIPTION_ID</subscriptionId>
<resourceGroup>RESOURCEGROUP_NAME</resourceGroup>
<appName>WEBAPP_NAME</appName>
<region>REGION</region>
<!-- Java Runtime Stack for App Service on Windows-->
<runtime>
<os>windows</os>
<javaVersion>1.8</javaVersion>
<webContainer>tomcat 9.0</webContainer>
</runtime>
<deployment>
<resources>
<resource>
<directory>${project.basedir}/target</directory>
<includes>
<include>*.war</include>
</includes>
</resource>
</resources>
</deployment>
</configuration>
</plugin>
</plugins>