-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpom.xml
More file actions
97 lines (93 loc) · 2.88 KB
/
Copy pathpom.xml
File metadata and controls
97 lines (93 loc) · 2.88 KB
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
<?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.liyulin</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>algorithm</module>
<module>canal</module>
<module>design-patterns</module>
<module>distributed-transaction</module>
<module>docker</module>
<module>elasticsearch</module>
<module>encryption</module>
<module>excel</module>
<module>flyway</module>
<!--<module>gradle</module>-->
<module>grpc-module</module>
<module>hibernate-validator</module>
<module>html2pdf</module>
<module>http-message-converter</module>
<module>jmh</module>
<module>jpa</module>
<module>junit5</module>
<module>jws-webservice</module>
<module>logback</module>
<module>mocktest</module>
<module>mongodb</module>
<module>protobuf</module>
<module>rabbitmq</module>
<module>rate-limiter</module>
<module>redis</module>
<module>sharding-jdbc</module>
<module>skills</module>
<module>spring-security</module>
<module>spring-security-webflux</module>
<module>spring-statemachine</module>
<module>spring5</module>
<module>spring-cloud-gateway</module>
<module>webservice-client</module>
<module>webservice-server</module>
<module>websocket-client</module>
<module>websocket-server</module>
<module>protostuff</module>
<module>shiro-servlet</module>
<module>shiro-webflux</module>
<module>quasar</module>
<module>mybatis-plus</module>
<module>retrofit</module>
<module>rocketmq</module>
<module>openfeign</module>
<module>binlog</module>
<module>spring-life-cycle</module>
<module>api-version</module>
<module>bytebuddy</module>
<module>spring-event</module>
<module>kafka</module>
<module>tkmybatis</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerVersion>${java.version}</compilerVersion>
<encoding>${project.build.sourceEncoding}</encoding>
<debug>true</debug>
<optimize>true</optimize>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
<!-- 使用aliyun镜像 -->
<repositories>
<repository>
<id>aliyun</id>
<name>aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</repository>
</repositories>
</project>