forked from java-aodeng/hope-boot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
88 lines (81 loc) · 3.45 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hope</groupId>
<artifactId>hope-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!--统一管理模板-->
<modules>
<module>hope-admin</module>
<module>hope-core</module>
<module>hope-framework</module>
<module>hope-sso-server</module>
<module>hope-generator</module>
<module>hope-quartz</module>
</modules>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<!-- 虽然Hope-Boot使用了宽松的GPL协议,但开发不易,希望您可以保留一下版权声明。笔芯~ -->
<description>
低调小熊猫开源作品hope-boot 个人博客:https://aodeng.cc 微信公众号:低调小熊猫
父模板
</description>
<developers>
<developer>
<id>aodeng</id>
<name>低调小熊猫</name>
<email>java@aodeng.cc</email>
<url>https://aodeng.cc</url>
</developer>
</developers>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath/>
</parent>
<!--统一全局版本管理-->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<hutool.all.version>4.1.7</hutool.all.version>
<mybatis.spring.boot.starter.version>1.3.1</mybatis.spring.boot.starter.version>
<mapper.spring.boot.starter.version>1.1.4</mapper.spring.boot.starter.version>
<pagehelper.spring.boot.starter.version>1.2.3</pagehelper.spring.boot.starter.version>
<druid.version>0.2.26</druid.version>
<fastjson.version>1.2.32</fastjson.version>
<shiro.spring.version>1.4.0</shiro.spring.version>
<shiro.redis.version>3.1.0</shiro.redis.version>
<thymeleaf.extras.shiro.version>2.0.0</thymeleaf.extras.shiro.version>
<nekohtml.version>1.9.22</nekohtml.version>
<commons.lang3.version>3.7</commons.lang3.version>
<kaptcha.version>2.3.2</kaptcha.version>
<springfox.swagger2.version>2.8.0</springfox.swagger2.version>
<springfox.swagger.ui.version>2.8.0</springfox.swagger.ui.version>
<xxl.sso.core.version>1.1.0</xxl.sso.core.version>
<hope.core.version>0.0.1-SNAPSHOT</hope.core.version>
<hope.framework.version>0.0.1-SNAPSHOT</hope.framework.version>
</properties>
<!--全局公共依赖-->
<dependencies>
<!--web-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!--hutool-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.all.version}</version>
</dependency>
</dependencies>
</project>