2017-04-12 04:06:47 +00:00
|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.loafle</groupId>
|
|
|
|
<artifactId>maven_parent_jar</artifactId>
|
|
|
|
<version>1.0.0-RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.loafle.overflow</groupId>
|
2017-04-12 06:08:04 +00:00
|
|
|
<artifactId>crawler_redis</artifactId>
|
2017-04-12 04:06:47 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2017-04-12 06:08:04 +00:00
|
|
|
<name>com.loafle.overflow.crawler_redis</name>
|
2017-04-12 04:06:47 +00:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<redis.client.version>2.9.0</redis.client.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.loafle.overflow</groupId>
|
2017-04-12 05:46:32 +00:00
|
|
|
<artifactId>crawler</artifactId>
|
2017-04-12 04:06:47 +00:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
<version>${redis.client.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|