-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathpom-war.xml
66 lines (57 loc) · 2.09 KB
/
pom-war.xml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.spring.demo</groupId>
<version>2.1.0</version>
<artifactId>mvc-exceptions-war</artifactId>
<name>Demo WAR for Spring Exception Handling Blog</name>
<!-- Build as a WAR file -->
<packaging>war</packaging>
<!-- Modify to set Java or Spring version -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>demo.main.Main</start-class>
<java.version>1.8</java.version>
</properties>
<!-- Must inherit from the Spring Boot parent POM. -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.18</version>
</parent>
<!-- Spring boot starters automatically configure common setups. It also
detects known dependencies like Thymeleaf. -->
<dependencies>
<!-- Spring Boot itself. Version number inherited from parent POM. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Not running embedded, Tomcat is provided externally -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- Tell Spring Boot to setup Thymeleaf for page rendering. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- RESTful API for monitoring the app. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Spring Boot plugin enables: spring-boot:run -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>