中国算力平台算力登记系统2.0
yanzhaofeige
3 days ago 9a224d216652ef2d6ff2e0bd01fba69c86a3f277
commit | author | age
43dc29 1 <?xml version="1.0" encoding="UTF-8"?>
Y 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         <artifactId>cpzidc</artifactId>
7         <groupId>com.odcc.cpzidc</groupId>
8         <version>3.8.8</version>
9     </parent>
10     <modelVersion>4.0.0</modelVersion>
11
12     <artifactId>cpzidc-framework</artifactId>
13
14     <description>
15         framework框架核心
16     </description>
17
18     <dependencies>
19
20         <!-- SpringBoot Web容器 -->
21          <dependency>
22             <groupId>org.springframework.boot</groupId>
23             <artifactId>spring-boot-starter-web</artifactId>
24         </dependency>
25
26         <!-- SpringBoot 拦截器 -->
27         <dependency>
28             <groupId>org.springframework.boot</groupId>
29             <artifactId>spring-boot-starter-aop</artifactId>
30         </dependency>
31
32         <!-- 阿里数据库连接池 -->
33         <dependency>
34             <groupId>com.alibaba</groupId>
35             <artifactId>druid-spring-boot-starter</artifactId>
36         </dependency>
37
38         <!-- 验证码 -->
39         <dependency>
40             <groupId>pro.fessional</groupId>
41             <artifactId>kaptcha</artifactId>
42             <exclusions>
43                 <exclusion>
44                     <artifactId>servlet-api</artifactId>
45                     <groupId>javax.servlet</groupId>
46                 </exclusion>
47             </exclusions>
48         </dependency>
49
50         <!-- 获取系统信息 -->
51         <dependency>
52             <groupId>com.github.oshi</groupId>
53             <artifactId>oshi-core</artifactId>
54         </dependency>
55
56         <!-- 系统模块-->
57         <dependency>
58             <groupId>com.odcc.cpzidc</groupId>
59             <artifactId>cpzidc-system</artifactId>
60         </dependency>
61
62     </dependencies>
63
64 </project>