提交 | 用户 | 时间
|
e7c126
|
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>iailab-framework</artifactId> |
|
8 |
<version>${revision}</version> |
|
9 |
</parent> |
|
10 |
<modelVersion>4.0.0</modelVersion> |
|
11 |
<artifactId>iailab-common-security</artifactId> |
|
12 |
<packaging>jar</packaging> |
|
13 |
|
|
14 |
<name>${project.artifactId}</name> |
|
15 |
<description> |
|
16 |
1. security:用户的认证、权限的校验,实现「谁」可以做「什么事」 |
|
17 |
2. operatelog:操作日志,实现「谁」在「什么时间」对「什么」做了「什么事」 |
|
18 |
</description> |
|
19 |
<url>https://github.com/YunaiV/ruoyi-vue-pro</url> |
|
20 |
|
|
21 |
<dependencies> |
|
22 |
<dependency> |
|
23 |
<groupId>com.iailab</groupId> |
|
24 |
<artifactId>iailab-common</artifactId> |
|
25 |
</dependency> |
|
26 |
|
|
27 |
<!-- Spring 核心 --> |
|
28 |
<dependency> |
|
29 |
<groupId>org.springframework.boot</groupId> |
|
30 |
<artifactId>spring-boot-starter-aop</artifactId> |
|
31 |
</dependency> |
|
32 |
|
|
33 |
<!-- Web 相关 --> |
|
34 |
<dependency> |
|
35 |
<groupId>com.iailab</groupId> |
|
36 |
<artifactId>iailab-common-web</artifactId> |
|
37 |
</dependency> |
|
38 |
<!-- spring boot 配置所需依赖 --> |
|
39 |
<dependency> |
|
40 |
<groupId>org.springframework.boot</groupId> |
|
41 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
42 |
<optional>true</optional> |
|
43 |
</dependency> |
|
44 |
|
|
45 |
<dependency> |
|
46 |
<groupId>org.springframework.boot</groupId> |
|
47 |
<artifactId>spring-boot-starter-security</artifactId> |
|
48 |
</dependency> |
|
49 |
|
|
50 |
<!-- RPC 远程调用相关 --> |
|
51 |
<dependency> |
|
52 |
<groupId>com.iailab</groupId> |
|
53 |
<artifactId>iailab-common-rpc</artifactId> |
|
54 |
<optional>true</optional> |
|
55 |
</dependency> |
|
56 |
|
|
57 |
<!-- 业务组件 --> |
|
58 |
<dependency> |
|
59 |
<groupId>com.iailab</groupId> |
|
60 |
<artifactId>iailab-module-system-api</artifactId> <!-- 需要使用它,进行 Token 的校验 --> |
|
61 |
<version>${revision}</version> |
|
62 |
</dependency> |
|
63 |
|
|
64 |
<!-- 工具类相关 --> |
|
65 |
<dependency> |
|
66 |
<groupId>com.google.guava</groupId> |
|
67 |
<artifactId>guava</artifactId> |
|
68 |
</dependency> |
|
69 |
|
|
70 |
<dependency> |
|
71 |
<!-- Spring Boot 通用操作日志组件,基于注解实现 --> |
|
72 |
<!-- 此组件解决的问题是:「谁」在「什么时间」对「什么」做了「什么事」 --> |
|
73 |
<groupId>io.github.mouzt</groupId> |
|
74 |
<artifactId>bizlog-sdk</artifactId> |
|
75 |
</dependency> |
|
76 |
|
|
77 |
</dependencies> |
|
78 |
|
|
79 |
|
|
80 |
<build> |
|
81 |
<plugins> |
|
82 |
<plugin> |
|
83 |
<groupId>org.springframework.boot</groupId> |
|
84 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
85 |
</plugin> |
|
86 |
<plugin> |
|
87 |
<groupId>org.apache.maven.plugins</groupId> |
|
88 |
<artifactId>maven-assembly-plugin</artifactId> |
|
89 |
<version>3.3.0</version> |
|
90 |
<executions> |
|
91 |
<execution> |
|
92 |
<phase>package</phase> |
|
93 |
<goals> |
|
94 |
<goal>single</goal> |
|
95 |
</goals> |
|
96 |
</execution> |
|
97 |
</executions> |
|
98 |
<configuration> |
|
99 |
<descriptorRefs> |
|
100 |
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
101 |
</descriptorRefs> |
|
102 |
<!-- <descriptors>--> |
|
103 |
<!-- <descriptor>src/main/resources/assembly.xml</descriptor>--> |
|
104 |
<!-- </descriptors>--> |
|
105 |
</configuration> |
|
106 |
</plugin> |
|
107 |
</plugins> |
|
108 |
</build> |
|
109 |
</project> |