shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?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-base</artifactId>
    <name>iplatform-base</name>
    <packaging>jar</packaging>
 
    <properties>
    </properties>
 
    <dependencies>
 
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
 
        <!-- 平台实体接口对象, 2022/09/19 -->
        <dependency>
            <groupId>com.iplatform</groupId>
            <artifactId>iplatform-model-pojo</artifactId>
        </dependency>
 
        <!-- 核心模块:提供非常基础服务(不连接数据库), 2022/09/19 -->
        <dependency>
            <groupId>com.iplatform</groupId>
            <artifactId>iplatform-core</artifactId>
        </dependency>
 
        <!-- 采集包含调度任务模块,也放入基础功能中。2022/12/29 -->
        <dependency>
            <groupId>com.iplatform</groupId>
            <artifactId>iplatform-gather</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>com.iplatform</groupId>
                    <artifactId>iplatform-model-pojo</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.walkersoft</groupId>
                    <artifactId>walker-jdbc</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
 
        <!-- 数据库代码生成模块(可选):, 2022/11/22 -->
<!--        <dependency>-->
<!--            <groupId>com.iplatform</groupId>-->
<!--            <artifactId>iplatform-jdbc-generator</artifactId>-->
<!--            <exclusions>-->
<!--                <exclusion>-->
<!--                    <groupId>com.walkersoft</groupId>-->
<!--                    <artifactId>walker-jdbc</artifactId>-->
<!--                </exclusion>-->
<!--            </exclusions>-->
<!--        </dependency>-->
 
        <!-- 提供数据库支持, 2022/09/19 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-jdbc</artifactId>
        </dependency>
 
        <!-- 提供Redis支持,由业务子工程决定是否依赖, 2022/09/20 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-support-redis</artifactId>
            <optional>true</optional>
            <exclusions>
                <exclusion>
                    <groupId>com.walkersoft</groupId>
                    <artifactId>walker-cache</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
 
        <!-- 基础模块提供web支持, 2022/10/31 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
 
        <!-- 简单的验证码实现(若依), 2022/11/06 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-support-kaptcha</artifactId>
        </dependency>
 
        <!--
        csv数据导入支持: univocity实现, 2023/02/01
        excel导入,目前这两种先放一起,2023/02/06
        -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-di-support-univocity</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>com.walkersoft</groupId>
                    <artifactId>walker-infrastructure</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
 
        <!-- 引入apache common-io, AbstractController 下载文件使用。2022-11-28 -->
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
 
        <!-- 推送相关实现,可选,根据最终引入来组装推送管理器。2023-04-24 -->
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-push-mail</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-push-sms-alidy</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.walkersoft</groupId>
            <artifactId>walker-push-wx-public</artifactId>
            <optional>true</optional>
        </dependency>
 
    </dependencies>
 
</project>