1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >spring-boot-app</groupId >
5+ <artifactId >spring-boot-app</artifactId >
6+ <version >0.0.1-SNAPSHOT</version >
7+ <packaging >war</packaging >
8+
9+ <parent >
10+ <groupId >org.springframework.boot</groupId >
11+ <artifactId >spring-boot-starter-parent</artifactId >
12+ <version >1.5.3.RELEASE</version >
13+ <relativePath />
14+ </parent >
15+
16+ <dependencies >
17+ <dependency >
18+ <groupId >org.springframework.boot</groupId >
19+ <artifactId >spring-boot-starter-web</artifactId >
20+ </dependency >
21+ <dependency >
22+ <groupId >org.springframework.boot</groupId >
23+ <artifactId >spring-boot-starter-data-jpa</artifactId >
24+ </dependency >
25+ <dependency >
26+ <groupId >com.h2database</groupId >
27+ <artifactId >h2</artifactId >
28+ </dependency >
29+ <dependency >
30+ <groupId >org.springframework.boot</groupId >
31+ <artifactId >spring-boot-starter-actuator</artifactId >
32+ </dependency >
33+ <dependency >
34+ <groupId >org.springframework.boot</groupId >
35+ <artifactId >spring-boot-starter-test</artifactId >
36+ </dependency >
37+ </dependencies >
38+
39+ <build >
40+ <sourceDirectory >src</sourceDirectory >
41+ <plugins >
42+ <plugin >
43+ <artifactId >maven-compiler-plugin</artifactId >
44+ <version >3.5.1</version >
45+ <configuration >
46+ <source >1.8</source >
47+ <target >1.8</target >
48+ </configuration >
49+ </plugin >
50+ <plugin >
51+ <artifactId >maven-war-plugin</artifactId >
52+ <version >3.0.0</version >
53+ <configuration >
54+ <warSourceDirectory >WebContent</warSourceDirectory >
55+ </configuration >
56+ </plugin >
57+ </plugins >
58+ </build >
59+
60+ <properties >
61+ <tomcat .version>8.0.43</tomcat .version>
62+ </properties >
63+
64+ </project >
0 commit comments