pom.xml
3.21 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>itcast-auth</artifactId>
<groupId>com.itheima</groupId>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>itcast-auth-entity</artifactId>
<name>${project.artifactId}</name>
<description>传智权限管家-权限服务实体模块</description>
<dependencies>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-common</artifactId>
</dependency>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-log</artifactId>
</dependency>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-jwt</artifactId>
</dependency>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-core</artifactId>
</dependency>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-swagger2</artifactId>
</dependency>
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-validator</artifactId>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
</dependency>
<!--Lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<!-- Role 中字段的类型需要使用 DataScopeType -->
<dependency>
<groupId>com.itheima</groupId>
<artifactId>itcast-tools-databases</artifactId>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.22</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
<!-- <distributionManagement>-->
<!-- <repository>-->
<!-- <id>nexus-release</id>-->
<!-- <name>Nexus release Repository</name>-->
<!-- <url>http://repo.itheima.net/repository/maven-releases/</url>-->
<!-- </repository>-->
<!-- <snapshotRepository>-->
<!-- <id>nexus-snapshots</id>-->
<!-- <name>Nexus snapshots Repository</name>-->
<!-- <url>http://repo.itheima.net/repository/maven-snapshots/</url>-->
<!-- </snapshotRepository>-->
<!-- </distributionManagement>-->
</project>