Narayan Kamath | 166772b | 2013-11-04 16:04:55 +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> |
Neil Fuller | 71b9f47 | 2015-09-16 17:39:32 +0100 | [diff] [blame] | 9 | <version>2.6.0-SNAPSHOT</version> |
Narayan Kamath | 166772b | 2013-11-04 16:04:55 +0000 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <artifactId>okhttp</artifactId> |
| 13 | <name>OkHttp</name> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 17 | <groupId>com.squareup.okio</groupId> |
| 18 | <artifactId>okio</artifactId> |
Neil Fuller | 3c938a3 | 2014-02-19 09:40:26 +0000 | [diff] [blame] | 19 | </dependency> |
Narayan Kamath | 166772b | 2013-11-04 16:04:55 +0000 | [diff] [blame] | 20 | </dependencies> |
| 21 | |
| 22 | <build> |
| 23 | <plugins> |
| 24 | <plugin> |
Neil Fuller | e78f117 | 2015-01-20 09:39:41 +0000 | [diff] [blame] | 25 | <groupId>org.codehaus.mojo</groupId> |
| 26 | <artifactId>templating-maven-plugin</artifactId> |
| 27 | <version>1.0-alpha-3</version> |
| 28 | <executions> |
| 29 | <execution> |
| 30 | <goals> |
| 31 | <goal>filter-sources</goal> |
| 32 | </goals> |
| 33 | </execution> |
| 34 | </executions> |
| 35 | </plugin> |
| 36 | <plugin> |
Narayan Kamath | 166772b | 2013-11-04 16:04:55 +0000 | [diff] [blame] | 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-javadoc-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <excludePackageNames>com.squareup.okhttp.internal:com.squareup.okhttp.internal.*</excludePackageNames> |
Neil Fuller | e78f117 | 2015-01-20 09:39:41 +0000 | [diff] [blame] | 41 | <links> |
| 42 | <link>http://square.github.io/okio/</link> |
| 43 | </links> |
Narayan Kamath | 166772b | 2013-11-04 16:04:55 +0000 | [diff] [blame] | 44 | </configuration> |
| 45 | </plugin> |
Narayan Kamath | 166772b | 2013-11-04 16:04:55 +0000 | [diff] [blame] | 46 | </plugins> |
| 47 | </build> |
| 48 | </project> |