Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 1 | <?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</groupId> |
| 8 | <artifactId>parent</artifactId> |
Tobias Thierer | 6c251e2 | 2016-06-24 19:04:17 +0100 | [diff] [blame] | 9 | <version>2.7.5</version> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <artifactId>okhttp-tests</artifactId> |
| 13 | <name>OkHttp Tests</name> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>com.squareup.okio</groupId> |
| 18 | <artifactId>okio</artifactId> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>com.squareup.okhttp</groupId> |
| 22 | <artifactId>okhttp</artifactId> |
| 23 | <version>${project.version}</version> |
| 24 | </dependency> |
| 25 | <dependency> |
Neil Fuller | e78f117 | 2015-01-20 09:39:41 +0000 | [diff] [blame] | 26 | <groupId>com.squareup.okhttp</groupId> |
Neil Fuller | 7aeaaef | 2015-05-07 13:14:41 +0100 | [diff] [blame] | 27 | <artifactId>okhttp-testing-support</artifactId> |
| 28 | <version>${project.version}</version> |
| 29 | <scope>test</scope> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>com.squareup.okhttp</groupId> |
Neil Fuller | e78f117 | 2015-01-20 09:39:41 +0000 | [diff] [blame] | 33 | <artifactId>okhttp-urlconnection</artifactId> |
| 34 | <version>${project.version}</version> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>junit</groupId> |
| 39 | <artifactId>junit</artifactId> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>com.squareup.okhttp</groupId> |
| 44 | <artifactId>mockwebserver</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
Neil Fuller | 7aeaaef | 2015-05-07 13:14:41 +0100 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>com.google.code.gson</groupId> |
| 50 | <artifactId>gson</artifactId> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 53 | </dependencies> |
Neil Fuller | e78f117 | 2015-01-20 09:39:41 +0000 | [diff] [blame] | 54 | |
| 55 | <build> |
| 56 | <plugins> |
| 57 | <!-- Do not deploy this as an artifact to Maven central. --> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-deploy-plugin</artifactId> |
| 61 | <configuration> |
| 62 | <skip>true</skip> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 67 | </project> |