提交 | 用户 | 时间
|
97edd7
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
H |
2 |
<project xmlns="http://maven.apache.org/POM/4.0.0" |
|
3 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
4 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
|
5 |
<parent> |
|
6 |
<groupId>com.iailab</groupId> |
|
7 |
<artifactId>shasteel</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<artifactId>shasteel-biz</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description> |
|
16 |
shasteel api实现, 业务代码及管理端api提供 |
|
17 |
</description> |
|
18 |
|
|
19 |
<dependencies> |
|
20 |
|
|
21 |
<!-- 依赖服务 --> |
|
22 |
<dependency> |
|
23 |
<groupId>com.iailab</groupId> |
|
24 |
<artifactId>shasteel-api</artifactId> |
|
25 |
<version>${revision}</version> |
|
26 |
</dependency> |
|
27 |
<dependency> |
|
28 |
<groupId>com.iailab</groupId> |
|
29 |
<artifactId>iailab-module-infra-api</artifactId> |
|
30 |
<version>${revision}</version> |
|
31 |
</dependency> |
|
32 |
|
|
33 |
<!-- 业务组件 --> |
|
34 |
<dependency> |
|
35 |
<groupId>com.iailab</groupId> |
|
36 |
<artifactId>iailab-common-biz-data-permission</artifactId> |
|
37 |
</dependency> |
|
38 |
|
|
39 |
<dependency> |
|
40 |
<groupId>com.iailab</groupId> |
|
41 |
<artifactId>iailab-common-biz-tenant</artifactId> |
|
42 |
</dependency> |
|
43 |
|
|
44 |
<dependency> |
|
45 |
<groupId>com.iailab</groupId> |
|
46 |
<artifactId>iailab-common-biz-ip</artifactId> |
|
47 |
</dependency> |
|
48 |
|
|
49 |
<!-- Web 相关 --> |
|
50 |
<dependency> |
|
51 |
<groupId>com.iailab</groupId> |
|
52 |
<artifactId>iailab-common-security</artifactId> |
|
53 |
</dependency> |
|
54 |
|
|
55 |
<!-- DB 相关 --> |
|
56 |
<dependency> |
|
57 |
<groupId>com.iailab</groupId> |
|
58 |
<artifactId>iailab-common-mybatis</artifactId> |
|
59 |
</dependency> |
|
60 |
|
|
61 |
<dependency> |
|
62 |
<groupId>com.iailab</groupId> |
|
63 |
<artifactId>iailab-common-redis</artifactId> |
|
64 |
</dependency> |
|
65 |
|
|
66 |
<!-- RPC 远程调用相关 --> |
|
67 |
<dependency> |
|
68 |
<groupId>com.iailab</groupId> |
|
69 |
<artifactId>iailab-common-rpc</artifactId> |
|
70 |
</dependency> |
|
71 |
|
|
72 |
<!-- Registry 注册中心相关 --> |
|
73 |
<dependency> |
|
74 |
<groupId>com.alibaba.cloud</groupId> |
|
75 |
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
|
76 |
</dependency> |
|
77 |
|
|
78 |
<!-- Config 配置中心相关 --> |
|
79 |
<dependency> |
|
80 |
<groupId>com.alibaba.cloud</groupId> |
|
81 |
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
|
82 |
</dependency> |
|
83 |
|
|
84 |
<!-- Test 测试相关 --> |
|
85 |
<dependency> |
|
86 |
<groupId>com.iailab</groupId> |
|
87 |
<artifactId>iailab-common-test</artifactId> |
|
88 |
<scope>test</scope> |
|
89 |
</dependency> |
|
90 |
|
|
91 |
<!-- 工具类相关 --> |
|
92 |
<dependency> |
|
93 |
<groupId>com.iailab</groupId> |
|
94 |
<artifactId>iailab-common-excel</artifactId> |
|
95 |
</dependency> |
|
96 |
|
|
97 |
<!-- 监控相关 --> |
|
98 |
<dependency> |
|
99 |
<groupId>com.iailab</groupId> |
|
100 |
<artifactId>iailab-common-monitor</artifactId> |
|
101 |
</dependency> |
|
102 |
|
|
103 |
<dependency> |
|
104 |
<groupId>com.xingyuv</groupId> |
|
105 |
<artifactId>spring-boot-starter-captcha-plus</artifactId> <!-- 验证码,一般用于登录使用 --> |
|
106 |
</dependency> |
|
107 |
|
|
108 |
<!-- 三方云服务相关 --> |
|
109 |
<dependency> |
|
110 |
<groupId>com.xingyuv</groupId> |
|
111 |
<artifactId>spring-boot-starter-justauth</artifactId> <!-- 社交登陆(例如说,个人微信、企业微信等等) --> |
|
112 |
</dependency> |
|
113 |
<dependency> |
|
114 |
<groupId>com.github.binarywang</groupId> |
|
115 |
<artifactId>wx-java-mp-spring-boot-starter</artifactId> <!-- 微信登录(公众号) --> |
|
116 |
</dependency> |
|
117 |
<dependency> |
|
118 |
<groupId>com.github.binarywang</groupId> |
|
119 |
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) --> |
|
120 |
</dependency> |
|
121 |
<dependency> |
|
122 |
<groupId>com.aliyun</groupId> |
|
123 |
<artifactId>aliyun-java-sdk-core</artifactId> <!-- 短信(阿里云) --> |
|
124 |
</dependency> |
|
125 |
<dependency> |
|
126 |
<groupId>com.aliyun</groupId> |
|
127 |
<artifactId>aliyun-java-sdk-dysmsapi</artifactId> <!-- 短信(阿里云) --> |
|
128 |
</dependency> |
|
129 |
<dependency> |
|
130 |
<groupId>com.tencentcloudapi</groupId> |
|
131 |
<artifactId>tencentcloud-sdk-java-sms</artifactId> <!-- 短信(腾讯云) --> |
|
132 |
</dependency> |
|
133 |
|
516ef4
|
134 |
|
L |
135 |
<dependency> |
|
136 |
<groupId>org.quartz-scheduler</groupId> |
|
137 |
<artifactId>quartz</artifactId> |
|
138 |
<version>2.3.2</version> |
|
139 |
</dependency> |
|
140 |
|
97edd7
|
141 |
</dependencies> |
H |
142 |
|
|
143 |
<build> |
|
144 |
<!-- 设置构建的 jar 包名 --> |
|
145 |
<finalName>${project.artifactId}</finalName> |
|
146 |
<plugins> |
|
147 |
<!-- 打包 --> |
|
148 |
<plugin> |
|
149 |
<groupId>org.springframework.boot</groupId> |
|
150 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
151 |
<version>${spring.boot.version}</version> |
|
152 |
<executions> |
|
153 |
<execution> |
|
154 |
<goals> |
|
155 |
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 --> |
|
156 |
</goals> |
|
157 |
</execution> |
|
158 |
</executions> |
|
159 |
</plugin> |
|
160 |
</plugins> |
|
161 |
</build> |
|
162 |
|
|
163 |
</project> |