-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
110 lines (93 loc) · 3.07 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
<?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>icu.easyj</groupId>
<artifactId>build</artifactId>
<version>${revision}</version>
<relativePath>./build/pom.xml</relativePath>
</parent>
<artifactId>easyj-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<name>${project.groupId} :: ${project.artifactId}</name>
<description>EasyJ项目提供了一系列的工具类、封装类、异常类、常量等等,降低各API的学习成本,提高开发效率,同时使Java代码能够更加简洁易懂。</description>
<properties>
<!-- 当前模块不执行install和deploy,子模块不会继承此配置。 -->
<maven.easyj.skipInstallAndDeploy>true</maven.easyj.skipInstallAndDeploy>
</properties>
<modules>
<module>build</module>
<module>dependencies</module>
<module>bom</module>
<!-- Core -->
<!--<module>core-parent</module>-->
<module>core-parent/all</module>
<module>core-parent/config</module>
<module>core-parent/core</module>
<module>core-parent/crypto</module>
<module>core-parent/data</module>
<module>core-parent/db</module>
<module>core-parent/jwt</module>
<module>core-parent/login</module>
<module>core-parent/poi</module>
<module>core-parent/redis</module>
<module>core-parent/web</module>
<!-- SDK -->
<module>sdk-parent</module>
<!-- Middleware -->
<module>middleware-parent</module>
<!-- Spring Boot -->
<module>spring-boot-project</module>
<!-- Test -->
<module>test</module>
<!-- Maven Plugin:源码已迁移到 https://github.com/easyj-projects/easyj-maven-plugin 中。 -->
<!--<module>maven-plugin</module>-->
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>icu.easyj</groupId>
<artifactId>easyj-dependencies</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- 引用依赖:Provided dependencies。(注:仅参与编译,无需被继承的依赖。) -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<scope>provided</scope>
</dependency>
<!-- 引用依赖:Tests -->
<dependency>
<groupId>icu.easyj</groupId>
<artifactId>easyj-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<!-- JMH -->
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- 使用插件:Javadoc -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>