1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >xiaomo</artifactId >
7+ <groupId >info.xiaomo</groupId >
8+ <version >1.0.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >core</artifactId >
13+ <dependencies >
14+ <!-- spring上下文 -->
15+ <dependency >
16+ <groupId >org.springframework</groupId >
17+ <artifactId >spring-context</artifactId >
18+ </dependency >
19+ <!-- spring data jpa -->
20+ <dependency >
21+ <groupId >org.springframework.data</groupId >
22+ <artifactId >spring-data-jpa</artifactId >
23+ </dependency >
24+ <!-- jpa封装 -->
25+ <dependency >
26+ <groupId >org.springframework.boot</groupId >
27+ <artifactId >spring-boot-starter-data-jpa</artifactId >
28+ </dependency >
29+ <!-- spring-boot -->
30+ <dependency >
31+ <groupId >org.springframework.boot</groupId >
32+ <artifactId >spring-boot-starter</artifactId >
33+ </dependency >
34+ <!-- spring-boot-web -->
35+ <dependency >
36+ <groupId >org.springframework.boot</groupId >
37+ <artifactId >spring-boot-starter-web</artifactId >
38+ </dependency >
39+ <dependency >
40+ <groupId >junit</groupId >
41+ <artifactId >junit</artifactId >
42+ <scope >test</scope >
43+ </dependency >
44+ <dependency >
45+ <groupId >mysql</groupId >
46+ <artifactId >mysql-connector-java</artifactId >
47+ </dependency >
48+ <dependency >
49+ <groupId >org.slf4j</groupId >
50+ <artifactId >slf4j-api</artifactId >
51+ </dependency >
52+ <dependency >
53+ <groupId >commons-io</groupId >
54+ <artifactId >commons-io</artifactId >
55+ </dependency >
56+ <dependency >
57+ <groupId >com.alibaba</groupId >
58+ <artifactId >fastjson</artifactId >
59+ </dependency >
60+ <dependency >
61+ <groupId >org.apache.commons</groupId >
62+ <artifactId >commons-lang3</artifactId >
63+ </dependency >
64+ <dependency >
65+ <groupId >commons-beanutils</groupId >
66+ <artifactId >commons-beanutils</artifactId >
67+ </dependency >
68+ <dependency >
69+ <groupId >commons-digester</groupId >
70+ <artifactId >commons-digester</artifactId >
71+ </dependency >
72+ <dependency >
73+ <groupId >commons-logging</groupId >
74+ <artifactId >commons-logging</artifactId >
75+ </dependency >
76+ <dependency >
77+ <groupId >org.springframework</groupId >
78+ <artifactId >spring-context-support</artifactId >
79+ </dependency >
80+ </dependencies >
81+ <build >
82+ <plugins >
83+ <plugin >
84+ <groupId >org.springframework.boot</groupId >
85+ <artifactId >spring-boot-maven-plugin</artifactId >
86+ </plugin >
87+ </plugins >
88+ </build >
89+
90+ </project >
0 commit comments