shikeyin
2024-01-16 bc9f706372230513c201e334e285b6e45f662e11
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
<?xml version="1.0" encoding="UTF-8"?>
 
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>iplatform</artifactId>
        <groupId>com.iplatform</groupId>
        <version>2.7.18</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
 
    <artifactId>iplatform-core</artifactId>
    <name>iplatform-core</name>
    <packaging>jar</packaging>
 
    <properties>
    </properties>
 
    <dependencies>
 
        <!-- 基础库依赖: web, 用户核心定义在这里,
             离开walker-web-security模块也能运行, 2022/10/29 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-web</artifactId>
        </dependency>
 
        <!-- 基础依赖: 缓存模块, 2022/09/20 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-cache</artifactId>
        </dependency>
 
        <!-- 依赖文件模块基础库,2023-02-14 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-file</artifactId>
        </dependency>
 
        <!-- 注解支持创建Bean -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-core</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.springframework</groupId>
                    <artifactId>spring-beans</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- 解析 yml 配置文件,不配置报错找不到文件。2022-08-25 -->
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
        </dependency>
 
        <!-- AESUtils 加解密工具使用,目前仅微信使用了。2023-09-15 -->
        <dependency>
            <groupId>org.bouncycastle</groupId>
            <artifactId>bcprov-jdk15on</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
 
    </dependencies>
 
</project>