yantian yue
2023-10-18 465d5c4666546e7e54f0e3c34c7bcce5830aaa6a
提交 | 用户 | 时间
1ac2bc 1 <?xml version="1.0" encoding="UTF-8"?>
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     <modelVersion>4.0.0</modelVersion>
6
7     <parent>
8         <groupId>cn.stylefeng</groupId>
9         <artifactId>guns-base-support</artifactId>
10         <version>1.0.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>guns-sys</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!--基础组件-->
21         <dependency>
22             <groupId>cn.stylefeng</groupId>
23             <artifactId>guns-base</artifactId>
24             <version>1.0.0</version>
25         </dependency>
26
27         <!-- 权限管理模块 -->
28         <dependency>
29             <groupId>cn.stylefeng</groupId>
30             <artifactId>guns-base-auth</artifactId>
31             <version>1.0.0</version>
32         </dependency>
33
34         <!--swagger-->
35         <dependency>
36             <groupId>io.springfox</groupId>
37             <artifactId>springfox-swagger2</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>io.springfox</groupId>
41             <artifactId>springfox-swagger-ui</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>com.github.xiaoymin</groupId>
45             <artifactId>swagger-bootstrap-ui</artifactId>
46             <version>1.9.6</version>
47         </dependency>
48
49         <!--百度UeEditor-->
50         <dependency>
51             <groupId>commons-fileupload</groupId>
52             <artifactId>commons-fileupload</artifactId>
53         </dependency>
54
55     </dependencies>
56
57     <build>
58         <finalName>${project.artifactId}</finalName>
59     </build>
60 </project>