-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
176 lines (165 loc) · 7.81 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.onezol.vertex</groupId>
<artifactId>vertex-admin</artifactId>
<version>1.0.0</version>
<name>vertex-admin</name>
<description>vertex-admin-project</description>
<packaging>pom</packaging>
<modules>
<module>vertex-admin-app</module>
<module>vertex-admin-common</module>
<module>vertex-admin-core</module>
<module>vertex-admin-security</module>
<module>vertex-admin-scheduler</module>
<module>vertex-admin-business</module>
</modules>
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<vertex.version>1.0.0</vertex.version>
<spring-boot.version>2.7.12</spring-boot.version>
<mybatis-plus.version>3.5.3.1</mybatis-plus.version>
<druid.version>1.2.15</druid.version>
<jjwt.version>0.9.1</jjwt.version>
<jasypt.version>1.9.2</jasypt.version>
<commons-beanutils.version>1.9.4</commons-beanutils.version>
<oshi-core.version>6.4.3</oshi-core.version>
<user-agent-utils.version>1.21</user-agent-utils.version>
<fastjson2.version>2.0.34</fastjson2.version>
<spring-file-storage.version>0.7.0</spring-file-storage.version>
<aws-java-sdk-s3.version>1.12.502</aws-java-sdk-s3.version>
<modelmapper.version>3.1.1</modelmapper.version>
<knife4j.version>4.1.0</knife4j.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- SpringBoot 依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- MyBatis Plus:https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<!-- Druid:https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid.version}</version>
</dependency>
<!-- jasypt(数据加密):https://mvnrepository.com/artifact/org.jasypt/jasypt -->
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>${jasypt.version}</version>
</dependency>
<!-- oshi-core(系统监控):https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
<dependency>
<groupId>com.github.oshi</groupId>
<artifactId>oshi-core</artifactId>
<version>${oshi-core.version}</version>
</dependency>
<!-- UserAgentUtils(User-Agent解析工具):https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils -->
<dependency>
<groupId>eu.bitwalker</groupId>
<artifactId>UserAgentUtils</artifactId>
<version>${user-agent-utils.version}</version>
</dependency>
<!-- fastjson2(JSON解析库): https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
<dependency>
<groupId>com.alibaba.fastjson2</groupId>
<artifactId>fastjson2</artifactId>
<version>${fastjson2.version}</version>
</dependency>
<!-- spring-file-storage(文件服务): https://mvnrepository.com/artifact/cn.xuyanwu/spring-file-storage -->
<dependency>
<groupId>cn.xuyanwu</groupId>
<artifactId>spring-file-storage</artifactId>
<version>${spring-file-storage.version}</version>
</dependency>
<!-- AWS S3: https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-s3 -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>${aws-java-sdk-s3.version}</version>
</dependency>
<!-- JJWT: https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>${jjwt.version}</version>
</dependency>
<!-- commons-beanutils(Bean转换工具类): https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>${commons-beanutils.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.modelmapper/modelmapper -->
<dependency>
<groupId>org.modelmapper</groupId>
<artifactId>modelmapper</artifactId>
<version>${modelmapper.version}</version>
</dependency>
<!-- Knife4j: https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-openapi3-spring-boot-starter -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
<version>${knife4j.version}</version>
</dependency>
<!-- vertex-admin-common 通用包 -->
<dependency>
<groupId>com.onezol.vertex.common</groupId>
<artifactId>vertex-admin-common</artifactId>
<version>${vertex.version}</version>
</dependency>
<!-- vertex-admin-core 核心包 -->
<dependency>
<groupId>com.onezol.vertex.core</groupId>
<artifactId>vertex-admin-core</artifactId>
<version>${vertex.version}</version>
</dependency>
<!-- vertex-admin-business 业务包 -->
<dependency>
<groupId>com.onezol.vertex.business</groupId>
<artifactId>vertex-admin-business</artifactId>
<version>${vertex.version}</version>
</dependency>
<!-- vertex-admin-scheduler 定时任务包 -->
<dependency>
<groupId>com.onezol.vertex.scheduler</groupId>
<artifactId>vertex-admin-scheduler</artifactId>
<version>${vertex.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<finalName>vertex-admin</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>