blob: aebd0eb2e44d77e96f36b9d2e253834c06bf75ed [file] [log] [blame]
Neil Fullerc6bd6832014-03-14 16:02:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2
3<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/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>com.squareup.okhttp.sample</groupId>
8 <artifactId>sample-parent</artifactId>
Neil Fuller71b9f472015-09-16 17:39:32 +01009 <version>2.6.0-SNAPSHOT</version>
Neil Fullerc6bd6832014-03-14 16:02:10 +000010 </parent>
11
12 <artifactId>crawler</artifactId>
13 <name>Sample: Crawler</name>
14
15 <dependencies>
16 <dependency>
17 <groupId>com.squareup.okhttp</groupId>
18 <artifactId>okhttp</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
22 <groupId>org.jsoup</groupId>
23 <artifactId>jsoup</artifactId>
24 <version>1.7.3</version>
25 </dependency>
26 </dependencies>
27</project>