forked from ssssssss-team/spider-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
208 lines (205 loc) · 7.18 KB
/
pom.xml
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [
<!ELEMENT project (modelVersion|groupId|artifactId|version|packaging|name|url|parent|properties|dependencies|dependencyManagement|modules)*>
<!ATTLIST project
xmlns CDATA #REQUIRED
xmlns:xsi CDATA #REQUIRED
xsi:schemaLocation CDATA #REQUIRED>
<!ELEMENT modelVersion (#PCDATA)>
<!ELEMENT groupId (#PCDATA)>
<!ELEMENT artifactId (#PCDATA)>
<!ELEMENT version (#PCDATA)>
<!ELEMENT packaging (#PCDATA)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT url (#PCDATA)>
<!ELEMENT parent (groupId|artifactId|version)*>
<!ELEMENT properties (project.build.sourceEncoding|spider-flow.version|alibaba.fastjson.version|alibaba.druid.version|alibaba.transmittable.version|mybatis.plus.version|apache.commons.text.verion|apache.commons.csv.verion|commons.io.version|guava.version|jsoup.version|xsoup.version)*>
<!ELEMENT project.build.sourceEncoding (#PCDATA)>
<!ELEMENT spider-flow.version (#PCDATA)>
<!ELEMENT alibaba.fastjson.version (#PCDATA)>
<!ELEMENT alibaba.druid.version (#PCDATA)>
<!ELEMENT alibaba.transmittable.version (#PCDATA)>
<!ELEMENT mybatis.plus.version (#PCDATA)>
<!ELEMENT apache.commons.text.verion (#PCDATA)>
<!ELEMENT apache.commons.csv.verion (#PCDATA)>
<!ELEMENT commons.io.version (#PCDATA)>
<!ELEMENT guava.version (#PCDATA)>
<!ELEMENT jsoup.version (#PCDATA)>
<!ELEMENT xsoup.version (#PCDATA)>
<!ELEMENT dependencies (dependency)*>
<!ELEMENT dependency (groupId|artifactId|version)*>
<!ELEMENT dependencyManagement (dependencies)*>
<!ELEMENT modules (module)*>
<!ELEMENT module (#PCDATA)>
]>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow</artifactId>
<version>0.5.0</version>
<packaging>pom</packaging>
<name>spider-flow</name>
<url>https://gitee.com/jmxd/spider-flow</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.7.RELEASE</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spider-flow.version>${project.version}</spider-flow.version>
<alibaba.fastjson.version>1.2.83</alibaba.fastjson.version>
<alibaba.druid.version>1.1.16</alibaba.druid.version>
<alibaba.transmittable.version>2.11.5</alibaba.transmittable.version>
<mybatis.plus.version>3.1.0</mybatis.plus.version>
<apache.commons.text.verion>1.6</apache.commons.text.verion>
<apache.commons.csv.verion>1.8</apache.commons.csv.verion>
<commons.io.version>2.7</commons.io.version>
<guava.version>28.2-jre</guava.version>
<jsoup.version>1.11.3</jsoup.version>
<xsoup.version>0.3.1</xsoup.version>
</properties>
<dependencies>
<!-- spring-boot相关配置 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<!-- 数据库相关 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis.plus.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- alibaba相关包 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${alibaba.fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${alibaba.druid.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>${alibaba.transmittable.version}</version>
</dependency>
<!-- apache commons相关 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${apache.commons.text.verion}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>${apache.commons.csv.verion}</version>
</dependency>
<!-- commons包 -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<!-- 其它包 -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>us.codecraft</groupId>
<artifactId>xsoup</artifactId>
<version>${xsoup.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-api</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-core</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-selenium</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-proxypool</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-mongodb</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-redis</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-ocr</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-oss</artifactId>
<version>${spider-flow.version}</version>
</dependency>
<dependency>
<groupId>org.spiderflow</groupId>
<artifactId>spider-flow-mailbox</artifactId>
<version>${spider-flow.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>spider-flow-api</module>
<module>spider-flow-core</module>
<module>spider-flow-web</module>
<module>spider-flow-redis</module>
<module>spider-flow-mongodb</module>
<module>spider-flow-selenium</module>
</modules>
</project>