inleft
2022-02-09 9bcb19959eeb9da9bde2561e7278f6d0a55eb151
commit | author | age
9bcb19 1 <?xml version="1.0" encoding="UTF-8"?>
I 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>vip.xiaonuo</groupId>
9         <artifactId>snowy-base</artifactId>
10         <version>1.6.0</version>
11         <relativePath>../pom.xml</relativePath>
12     </parent>
13
14     <artifactId>snowy-system</artifactId>
15
16     <packaging>jar</packaging>
17
18     <dependencies>
19
20         <!-- core模块 -->
21         <dependency>
22             <groupId>vip.xiaonuo</groupId>
23             <artifactId>snowy-core</artifactId>
24             <version>1.6.0</version>
25         </dependency>
26
27         <!-- test -->
28         <dependency>
29             <groupId>org.springframework.boot</groupId>
30             <artifactId>spring-boot-starter-test</artifactId>
31             <scope>test</scope>
32             <exclusions>
33                 <exclusion>
34                     <groupId>org.junit.vintage</groupId>
35                     <artifactId>junit-vintage-engine</artifactId>
36                 </exclusion>
37                 <exclusion>
38                     <groupId>com.vaadin.external.google</groupId>
39                     <artifactId>android-json</artifactId>
40                 </exclusion>
41             </exclusions>
42         </dependency>
43
44         <!-- processor -->
45         <dependency>
46             <groupId>org.springframework.boot</groupId>
47             <artifactId>spring-boot-configuration-processor</artifactId>
48             <optional>true</optional>
49         </dependency>
50
51         <!-- jwt token -->
52         <dependency>
53             <groupId>io.jsonwebtoken</groupId>
54             <artifactId>jjwt</artifactId>
55         </dependency>
56
57         <!--swagger接口文档-->
58         <dependency>
59             <groupId>com.github.xiaoymin</groupId>
60             <artifactId>knife4j-spring-boot-starter</artifactId>
61         </dependency>
62
63         <!--验证码-->
64         <dependency>
65             <groupId>com.anji-plus</groupId>
66             <artifactId>spring-boot-starter-captcha</artifactId>
67             <version>1.2.8</version>
68         </dependency>
69
70     </dependencies>
71
72     <build>
73         <finalName>${project.artifactId}</finalName>
74     </build>
75 </project>