提交 | 用户 | 时间
|
1ac2bc
|
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 |
<parent> |
|
8 |
<groupId>cn.stylefeng</groupId> |
|
9 |
<artifactId>guns-base-support</artifactId> |
|
10 |
<version>1.0.0</version> |
|
11 |
<relativePath>../pom.xml</relativePath> |
|
12 |
</parent> |
|
13 |
|
|
14 |
<artifactId>guns-base</artifactId> |
|
15 |
|
|
16 |
<packaging>jar</packaging> |
|
17 |
|
|
18 |
<dependencies> |
|
19 |
|
|
20 |
<!--核心组件--> |
|
21 |
<dependency> |
|
22 |
<groupId>cn.stylefeng.roses</groupId> |
|
23 |
<artifactId>kernel-core</artifactId> |
|
24 |
</dependency> |
|
25 |
<dependency> |
|
26 |
<groupId>cn.stylefeng.roses</groupId> |
|
27 |
<artifactId>kernel-validator</artifactId> |
|
28 |
</dependency> |
|
29 |
|
|
30 |
<!--数据库驱动,可根据自己需要自行删减--> |
|
31 |
<dependency> |
|
32 |
<groupId>mysql</groupId> |
|
33 |
<artifactId>mysql-connector-java</artifactId> |
|
34 |
</dependency> |
|
35 |
<dependency> |
|
36 |
<groupId>net.sourceforge.jtds</groupId> |
|
37 |
<artifactId>jtds</artifactId> |
|
38 |
</dependency> |
|
39 |
<dependency> |
|
40 |
<groupId>com.oracle</groupId> |
|
41 |
<artifactId>ojdbc6</artifactId> |
|
42 |
</dependency> |
|
43 |
<dependency> |
|
44 |
<groupId>org.postgresql</groupId> |
|
45 |
<artifactId>postgresql</artifactId> |
|
46 |
</dependency> |
|
47 |
|
|
48 |
<!--spring boot依赖--> |
|
49 |
<dependency> |
|
50 |
<groupId>org.springframework.boot</groupId> |
|
51 |
<artifactId>spring-boot-starter-aop</artifactId> |
|
52 |
</dependency> |
|
53 |
<dependency> |
|
54 |
<groupId>org.springframework.boot</groupId> |
|
55 |
<artifactId>spring-boot-starter-web</artifactId> |
|
56 |
</dependency> |
|
57 |
<dependency> |
|
58 |
<groupId>org.springframework.boot</groupId> |
|
59 |
<artifactId>spring-boot-starter-cache</artifactId> |
|
60 |
</dependency> |
|
61 |
<dependency> |
|
62 |
<groupId>org.springframework.boot</groupId> |
|
63 |
<artifactId>spring-boot-starter-validation</artifactId> |
|
64 |
</dependency> |
|
65 |
<dependency> |
|
66 |
<groupId>org.springframework.boot</groupId> |
|
67 |
<artifactId>spring-boot-starter-test</artifactId> |
|
68 |
<scope>test</scope> |
|
69 |
</dependency> |
|
70 |
|
|
71 |
<!--beetl模板引擎--> |
|
72 |
<dependency> |
|
73 |
<groupId>com.ibeetl</groupId> |
|
74 |
<artifactId>beetl</artifactId> |
|
75 |
</dependency> |
|
76 |
|
|
77 |
<!--jwt token--> |
|
78 |
<dependency> |
|
79 |
<groupId>io.jsonwebtoken</groupId> |
|
80 |
<artifactId>jjwt</artifactId> |
|
81 |
</dependency> |
|
82 |
|
|
83 |
<dependency> |
|
84 |
<groupId>org.springframework.boot</groupId> |
|
85 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
86 |
<optional>true</optional> |
|
87 |
</dependency> |
|
88 |
|
|
89 |
<!--excel导入导出--> |
|
90 |
<dependency> |
|
91 |
<groupId>cn.afterturn</groupId> |
|
92 |
<artifactId>easypoi-web</artifactId> |
|
93 |
</dependency> |
|
94 |
|
|
95 |
<!--quartz定时任务--> |
|
96 |
<dependency> |
|
97 |
<groupId>org.springframework.boot</groupId> |
|
98 |
<artifactId>spring-boot-starter-quartz</artifactId> |
|
99 |
</dependency> |
|
100 |
|
|
101 |
<!--验证码--> |
|
102 |
<dependency> |
|
103 |
<groupId>com.github.penggle</groupId> |
|
104 |
<artifactId>kaptcha</artifactId> |
|
105 |
</dependency> |
|
106 |
|
|
107 |
<!--多数据源控制--> |
|
108 |
<dependency> |
|
109 |
<groupId>org.springframework.boot</groupId> |
|
110 |
<artifactId>spring-boot-starter-jta-atomikos</artifactId> |
|
111 |
</dependency> |
|
112 |
|
|
113 |
<!-- 获取系统信息 --> |
|
114 |
<dependency> |
|
115 |
<groupId>com.github.oshi</groupId> |
|
116 |
<artifactId>oshi-core</artifactId> |
|
117 |
</dependency> |
|
118 |
|
|
119 |
</dependencies> |
|
120 |
|
|
121 |
<build> |
|
122 |
<finalName>${project.artifactId}</finalName> |
|
123 |
</build> |
|
124 |
</project> |