-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
119 lines (112 loc) · 4.63 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
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.0.RELEASE</version>
</parent>
<groupId>org.ko.prototype</groupId>
<artifactId>prototype-server</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>prototype-core</module>
<module>prototype-app</module>
<module>prototype-mysql</module>
<module>prototype-codegen</module>
<module>prototype-mongo</module>
</modules>
<properties>
<project.version>1.0-SNAPSHOT</project.version>
<skipTests>true</skipTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<pagehelper.version>1.2.5</pagehelper.version>
<swagger.version>2.8.0</swagger.version>
<druid.version>1.1.9</druid.version>
<fastjson.version>1.2.47</fastjson.version>
<wiremock.version>2.16.0</wiremock.version>
<spring.mybatis.version>1.3.2</spring.mybatis.version>
<mybatis.common.mapper>1.2.3</mybatis.common.mapper>
<spring.security.version>4.2.5.RELEASE</spring.security.version>
<apache.collections.version>3.2.2</apache.collections.version>
<apache.lang3.version>3.9</apache.lang3.version>
<apache.beanutils.version>1.9.3</apache.beanutils.version>
<apache.io.version>2.6</apache.io.version>
<apache.poi.version>4.1.1</apache.poi.version>
<spring.social.version>1.1.6.RELEASE</spring.social.version>
<guava.version>28.0-jre</guava.version>
<aliyun.sms.version>4.0.3</aliyun.sms.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Greenwich.SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>timestamp-property</goal>
</goals>
<configuration>
<name>revision</name>
<pattern>yyyyMMdd.HHmmss</pattern>
<timeZone>GMT+8</timeZone>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>zh_CN</locales>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-checkstyle-plugin</artifactId>-->
<!--<executions>-->
<!--<execution>-->
<!--<id>validate</id>-->
<!--<phase>validate</phase>-->
<!--<goals>-->
<!--<goal>check</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<encoding>UTF-8</encoding>-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
</plugins>
</build>
</project>