eight
2024-10-24 8045900f35d49ae11e90e9155f9082d2f20ca31c
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
<?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">
    <parent>
        <groupId>cn.lihu</groupId>
        <artifactId>jh-module-system</artifactId>
        <version>${revision}</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>jh-module-system-biz</artifactId>
    <packaging>jar</packaging>
 
    <name>${project.artifactId}</name>
    <description>
        system 模块下,我们放通用业务,支撑上层的核心业务。
        例如说:用户、部门、权限、数据字典等等
    </description>
 
    <dependencies>
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-module-system-api</artifactId>
            <version>${revision}</version>
        </dependency>
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-module-infra-api</artifactId>
            <version>${revision}</version>
        </dependency>
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-module-ecg-api</artifactId>
            <version>${revision}</version>
            <scope>compile</scope>
        </dependency>
 
        <!-- 业务组件 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-biz-data-permission</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-biz-tenant</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-biz-ip</artifactId>
        </dependency>
 
        <!-- Web 相关 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-security</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-validation</artifactId>
        </dependency>
 
        <!-- DB 相关 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-mybatis</artifactId>
        </dependency>
 
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-redis</artifactId>
        </dependency>
 
        <!-- Job 定时任务相关 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-job</artifactId>
        </dependency>
 
        <!-- 消息队列相关 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-mq</artifactId>
        </dependency>
 
        <!-- 工具类相关 -->
        <dependency>
            <groupId>cn.lihu</groupId>
            <artifactId>jh-spring-boot-starter-excel</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
        </dependency>
 
        <!-- 三方云服务相关 -->
        <dependency>
            <groupId>com.xingyuv</groupId>
            <artifactId>spring-boot-starter-justauth</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) -->
        </dependency>
 
        <dependency>
            <groupId>com.github.binarywang</groupId>
            <artifactId>wx-java-mp-spring-boot-starter</artifactId> <!-- 微信登录(公众号) -->
        </dependency>
        <dependency>
            <groupId>com.github.binarywang</groupId>
            <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>  <!-- 微信登录(小程序) -->
        </dependency>
 
        <dependency>
            <groupId>com.aliyun</groupId>
            <artifactId>aliyun-java-sdk-core</artifactId> <!-- 短信(阿里云) -->
        </dependency>
        <dependency>
            <groupId>com.aliyun</groupId>
            <artifactId>aliyun-java-sdk-dysmsapi</artifactId> <!-- 短信(阿里云) -->
        </dependency>
        <dependency>
            <groupId>com.tencentcloudapi</groupId>
            <artifactId>tencentcloud-sdk-java-sms</artifactId> <!-- 短信(腾讯云) -->
        </dependency>
 
        <dependency>
            <groupId>com.xingyuv</groupId>
            <artifactId>spring-boot-starter-captcha-plus</artifactId> <!-- 验证码,一般用于登录使用 -->
        </dependency>
    </dependencies>
 
</project>