1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+ <groupId >com.spring.rest</groupId >
6+ <artifactId >springboot-connection-pool</artifactId >
7+ <version >0.0.1-SNAPSHOT</version >
8+ <name >springboot-connection-pool</name >
9+ <parent >
10+ <groupId >org.springframework.boot</groupId >
11+ <artifactId >spring-boot-starter-parent</artifactId >
12+ <version >2.0.0.BUILD-SNAPSHOT</version >
13+ <relativePath />
14+ <!-- lookup parent from repository -->
15+ </parent >
16+ <properties >
17+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
18+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
19+ <java .version>1.8</java .version>
20+ </properties >
21+ <dependencies >
22+ <dependency >
23+ <groupId >org.springframework.boot</groupId >
24+ <artifactId >spring-boot-starter-web</artifactId >
25+ </dependency >
26+ <dependency >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-starter-data-jpa</artifactId >
29+ </dependency >
30+
31+ <!-- Spring Boot Data 2.0 includes HikariCP by default -->
32+ <!-- dependency>
33+ <groupId>com.zaxxer</groupId>
34+ <artifactId>HikariCP</artifactId>
35+ <version>3.1.0</version>
36+ </dependency -->
37+
38+ <dependency >
39+ <groupId >com.h2database</groupId >
40+ <artifactId >h2</artifactId >
41+ <scope >runtime</scope >
42+ </dependency >
43+ <dependency >
44+ <groupId >log4j</groupId >
45+ <artifactId >log4j</artifactId >
46+ <version >1.2.17</version >
47+ </dependency >
48+ <!-- https://mvnrepository.com/artifact/log4j/log4j -->
49+ <dependency >
50+ <groupId >log4j</groupId >
51+ <artifactId >log4j</artifactId >
52+ <version >1.2.17</version >
53+ </dependency >
54+ <dependency >
55+ <groupId >org.modelmapper</groupId >
56+ <artifactId >modelmapper</artifactId >
57+ <version >2.3.0</version >
58+ </dependency >
59+ <dependency >
60+ <groupId >org.springframework.boot</groupId >
61+ <artifactId >spring-boot-starter-test</artifactId >
62+ <scope >test</scope >
63+ </dependency >
64+ </dependencies >
65+ <build >
66+ <plugins >
67+ <plugin >
68+ <groupId >org.springframework.boot</groupId >
69+ <artifactId >spring-boot-maven-plugin</artifactId >
70+ </plugin >
71+ </plugins >
72+ </build >
73+ <repositories >
74+ <repository >
75+ <id >spring-snapshots</id >
76+ <name >Spring Snapshots</name >
77+ <url >https://repo.spring.io/snapshot</url >
78+ <snapshots >
79+ <enabled >true</enabled >
80+ </snapshots >
81+ </repository >
82+ <repository >
83+ <id >spring-milestones</id >
84+ <name >Spring Milestones</name >
85+ <url >https://repo.spring.io/milestone</url >
86+ <snapshots >
87+ <enabled >false</enabled >
88+ </snapshots >
89+ </repository >
90+ </repositories >
91+ <pluginRepositories >
92+ <pluginRepository >
93+ <id >spring-snapshots</id >
94+ <name >Spring Snapshots</name >
95+ <url >https://repo.spring.io/snapshot</url >
96+ <snapshots >
97+ <enabled >true</enabled >
98+ </snapshots >
99+ </pluginRepository >
100+ <pluginRepository >
101+ <id >spring-milestones</id >
102+ <name >Spring Milestones</name >
103+ <url >https://repo.spring.io/milestone</url >
104+ <snapshots >
105+ <enabled >false</enabled >
106+ </snapshots >
107+ </pluginRepository >
108+ </pluginRepositories >
109+
110+ </project >
0 commit comments