forked from timebusker/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
125 lines (119 loc) · 5.05 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?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>cn.timebusker</groupId>
<artifactId>spring-boot</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<name>spring-boot</name>
<description>spring-boot学习使用总结</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.5.RELEASE</version>
</parent>
<properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>utf-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<!-- 全局依赖设置:引入依赖会自动传递到子模块中 -->
<dependencies>
</dependencies>
<!-- 全局依赖管理:引入依赖不会自动传递到子模块中,子模块中需要申明依赖;重要用于依赖版本管理 -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.31</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>spring-boot</finalName>
<!-- spring-boot-maven-plugin 提供了许多非常便捷的插件,它可以在classpath下收集很多的JAR包, 并能够建立一个独立可运行的JAR包,这让他能够非常方便的运行你的系统服务�?? spring-boot-maven-plugin插件
搜索public static void main()方法标记为可运行的类。它提供内置的依赖解析器,用于设置版本号匹配Spring引导依赖�?? 你可以覆盖任何你想要的版本,但是它将默认为Boot的所选版本集 -->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
<meminitial>128m</meminitial>
<maxmem>512m</maxmem>
<fork>true</fork>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>spring-boot-1-QuickStart</module>
<module>spring-boot-2-RESTful</module>
<module>spring-boot-3-logs</module>
<module>spring-boot-4-Scheduled</module>
<module>spring-boot-5-Async</module>
<module>spring-boot-6-GlobalException</module>
<module>spring-boot-7-EhCache</module>
<module>spring-boot-8-AOP</module>
<module>spring-boot-9-JavaMailSender</module>
<module>spring-boot-10-SpringData</module>
<module>spring-boot-11-SpringSecurity</module>
<module>spring-boot-12-Swagger2</module>
<module>spring-boot-13-MyBatis</module>
<module>spring-boot-14-JdbcTemplate</module>
<module>spring-boot-15-Redis</module>
<module>spring-boot-16-Transcation</module>
<module>spring-boot-17-monitor</module>
<module>spring-boot-18-MQ</module>
<module>spring-boot-19-Definition-Starter</module>
<module>spring-boot-20-Freemarker</module>
<module>spring-boot-21-MultiDataSource</module>
</modules>
<repositories>
<repository>
<id>Aliyun_Nexus</id>
<name>Aliyun Nexus Repository</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>