-
Notifications
You must be signed in to change notification settings - Fork 6
/
pom.xml
220 lines (188 loc) · 7.04 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?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.chinasoft.it.wecode</groupId>
<artifactId>wecode</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<!-- 2.0 https://blog.csdn.net/qq_38431305/article/details/80917047 <parent>
<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.10.RELEASE</version> <relativePath /> </parent> -->
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.3</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<swagger.version>2.9.2</swagger.version>
<mapstruct.version>1.2.0.CR1</mapstruct.version>
<project.groupId>com.chinasoft.it.wecode</project.groupId>
<project.version>0.0.1-SNAPSHOT</project.version>
</properties>
<modules>
<!-- 基础框架 -->
<module>we-fundation/wecode-core</module>
<module>we-fundation/wecode-logging-support</module>
<module>we-fundation/wecode-web-support</module>
<!-- 微服务组件 -->
<module>we-cloud/wecode-gateway</module>
<module>we-cloud/wecode-configurer</module>
<!-- 工具 -->
<module>we-tool/wecode-generator</module>
<module>wecode-common</module>
<module>wecode-sign</module>
<module>wecode-resource</module>
<module>wecode-asset</module>
<module>wecode-admin</module>
<module>wecode-operation</module>
<module>wecode-security</module>
<module>wecode-excel</module>
<module>wecode-distributed</module>
<!-- <module>wecode-data-multiTenancy</module> <module>wecode-data-tenant</module> -->
<module>wecode-excel-engine</module>
<module>wecode-agent-trace</module>
<module>wecode-trace-api</module>
<module>wecode-trace-agent-example</module>
<module>wecode-security-authorization</module>
<module>wecode-security-core</module>
<module>template-mybatis</module>
<module>wecode-example</module>
<module>wecode-base-config</module>
<module>wecode-workflow</module>
<module>wecode-profiler</module>
<module>wecode-todo</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Lombok 是一种 Java™ 实用工具,可用来帮助开发人员消除 Java 的冗长,尤其是对于简单的 Java 对象(POJO)。它通过注解实现这一目的。 -->
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.20</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>${swagger.version}</version>
<scope>compile</scope>
<!-- FIXBUG:Couldn't retrieve @Mapper annotation -->
<exclusions>
<exclusion>
<artifactId>org.mapstruct</artifactId>
<groupId>mapstruct</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- swagger ui plus -->
<!-- https://gitee.com/xiaoym/swagger-bootstrap-ui-demo -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>swagger-bootstrap-ui</artifactId>
<version>1.9.4</version>
</dependency>
<!-- <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId>
<version>${swagger.version}</version> </dependency> -->
<!-- @Import({ ... springfox.documentation.spring.data.rest.configuration.SpringDataRestConfiguration.class,
...}) -->
<!--
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-data-rest</artifactId>
<version>${swagger.version}</version>
</dependency>
-->
<!-- @Import({ ... springfox.bean.validators.configuration.BeanValidatorPluginsConfiguration.class,
...}) -->
<!--
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-bean-validators</artifactId>
<version>${swagger.version}</version>
</dependency>
-->
<!--mapStruct依赖 -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.11</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<!-- https://blog.csdn.net/q_linchao/article/details/80693214 -->
<!-- https://github.com/alibaba/druid/wiki/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98 -->
<!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
<!-- hex encrpt -->
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.12</version>
</dependency>
<!-- 号称最快的单机缓存 -->
<!-- https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>2.7.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.activiti/activiti-spring-boot-starter-basic -->
<!--
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter-basic</artifactId>
<version>6.0.0</version>
</dependency>
-->
<!-- https://mvnrepository.com/artifact/org.activiti/activiti-spring-boot-starter -->
<dependency>
<groupId>org.activiti</groupId>
<artifactId>activiti-spring-boot-starter</artifactId>
<version>7.1.0.M2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.freemarker/freemarker -->
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.28</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.seata/seata-spring-boot-starter -->
<!-- 阿里GTS 分布式事务(开源版本) Seata: Simple Extensible Autonomous Transaction Architecture -->
<!-- https://github.com/seata/seata 组合服务接口上添加注解-》@GlobalTransactional -->
<!--
<dependency>
<groupId>io.seata</groupId>
<artifactId>seata-all</artifactId>
<version>0.7.1</version>
</dependency>
-->
</dependencies>
</dependencyManagement>
<dependencies>
</dependencies>
</project>