-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
69 lines (61 loc) · 2.46 KB
/
pom.xml
File metadata and controls
69 lines (61 loc) · 2.46 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
<?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.zyf.java-knowledge</groupId>
<artifactId>java-knowledge</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>曾玉飞的JAVA个人知识库</name>
<modules>
<module>Z_utils</module>
<module>Z_0001_设计模式</module>
<module>Z_0002_多线程</module>
<module>Z_0019_Netty入门IO通讯</module>
<module>Z_0020_RabbitMQ入门</module>
<module>Z_0021_简单手写RPC</module>
<!-- <module>Z_0050_SpringCloud入门</module>-->
</modules>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- 本系统 版本 -->
<!-- 自 Maven 3.5.0-beta-1 开始,可以使用 ${revision}, ${sha1} and/or ${changelist} 这样的变量作为版本占位符。-->
<!-- 只能命名成revision,不可以更改成其他命名;-->
<revision>1.0.0</revision>
</properties>
<dependencies>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.26</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.32</version>
</dependency>
<dependency>
<groupId>com.zyf.java-knowledge</groupId>
<artifactId>Z_utils</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 项目属性 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>