-
Notifications
You must be signed in to change notification settings - Fork 285
/
pom.xml
71 lines (64 loc) · 2.5 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
<?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>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.4</version>
<relativePath/>
</parent>
<groupId>com.diboot</groupId>
<artifactId>diboot-root</artifactId>
<version>3.5.0</version>
<packaging>pom</packaging>
<modules>
<module>diboot-core</module>
<module>diboot-core-starter</module>
<module>diboot-file-starter</module>
<module>diboot-iam-starter</module>
<module>diboot-scheduler-starter</module>
<module>diboot-notification-starter</module>
<module>diboot-mobile-starter</module>
<module>diboot-tenant-starter</module>
<module>diboot-ai-starter</module>
</modules>
<properties>
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
<mybatis-plus.version>3.5.8</mybatis-plus.version>
<okhttp.version>4.12.0</okhttp.version>
<aspectjweaver.version>1.9.22.1</aspectjweaver.version>
<commons-io.version>2.17.0</commons-io.version>
<easyexcel.version>4.0.3</easyexcel.version>
<shiro.version>2.0.1</shiro.version>
<diboot.version>3.5.0</diboot.version>
</properties>
<dependencies>
<!-- 编译需要的依赖 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<!-- Annotation processor
<dependency>
<groupId>com.github.therapi</groupId>
<artifactId>therapi-runtime-javadoc-scribe</artifactId>
<version>0.15.0</version>
<scope>provided</scope>
</dependency>-->
</dependencies>
</project>