1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >cn.abel</groupId >
8+ <artifactId >springboot-elasticserach</artifactId >
9+ <version >1.0-SNAPSHOT</version >
10+ <parent >
11+ <groupId >org.springframework.boot</groupId >
12+ <artifactId >spring-boot-starter-parent</artifactId >
13+ <version >2.0.4.RELEASE</version >
14+ <relativePath />
15+ </parent >
16+
17+ <dependencies >
18+ <dependency >
19+ <groupId >org.springframework.boot</groupId >
20+ <artifactId >spring-boot-starter-web</artifactId >
21+ </dependency >
22+ <dependency >
23+ <groupId >org.springframework.boot</groupId >
24+ <artifactId >spring-boot-starter-test</artifactId >
25+ <scope >test</scope >
26+ </dependency >
27+
28+ <dependency >
29+ <groupId >org.springframework.boot</groupId >
30+ <artifactId >spring-boot-starter-freemarker</artifactId >
31+ </dependency >
32+
33+ <!-- mybatis-->
34+ <dependency >
35+ <groupId >org.mybatis.spring.boot</groupId >
36+ <artifactId >mybatis-spring-boot-starter</artifactId >
37+ <version >1.3.2</version >
38+ </dependency >
39+ <dependency >
40+ <groupId >com.github.pagehelper</groupId >
41+ <artifactId >pagehelper-spring-boot-starter</artifactId >
42+ <version >1.2.5</version >
43+ </dependency >
44+ <dependency >
45+ <groupId >mysql</groupId >
46+ <artifactId >mysql-connector-java</artifactId >
47+ <version >5.1.40</version >
48+ </dependency >
49+
50+ <dependency >
51+ <groupId >org.apache.commons</groupId >
52+ <artifactId >commons-lang3</artifactId >
53+ <version >3.4</version >
54+ </dependency >
55+ </dependencies >
56+
57+ </project >
0 commit comments