2019-08-06 15:55:38 +08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.spiderflow</groupId>
|
|
|
|
<artifactId>spider-flow</artifactId>
|
2019-11-17 13:39:28 +08:00
|
|
|
<version>0.2.1</version>
|
2019-08-06 15:55:38 +08:00
|
|
|
</parent>
|
|
|
|
<artifactId>spider-flow-core</artifactId>
|
|
|
|
<name>spider-flow-core</name>
|
2019-08-06 15:58:53 +08:00
|
|
|
<url>https://gitee.com/jmxd/spider-flow/tree/master/spider-flow-core</url>
|
2019-08-06 15:55:38 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.11.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.wanghaomiao</groupId>
|
|
|
|
<artifactId>JsoupXpath</artifactId>
|
|
|
|
<version>2.3.2</version>
|
2019-09-13 13:22:50 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-08-06 15:55:38 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spiderflow</groupId>
|
|
|
|
<artifactId>spider-flow-api</artifactId>
|
2019-10-30 10:27:43 +08:00
|
|
|
<version>${spider-flow.version}</version>
|
2019-08-06 15:55:38 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|