xref: /aosp_15_r20/external/okhttp/okhttp-android-support/pom.xml (revision ab625e417e7950f52094c019474d2a9e9f14a68c)
1*ab625e41SAndroid Build Coastguard Worker<?xml version="1.0" encoding="UTF-8"?>
2*ab625e41SAndroid Build Coastguard Worker
3*ab625e41SAndroid Build Coastguard Worker<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*ab625e41SAndroid Build Coastguard Worker  <modelVersion>4.0.0</modelVersion>
5*ab625e41SAndroid Build Coastguard Worker
6*ab625e41SAndroid Build Coastguard Worker  <parent>
7*ab625e41SAndroid Build Coastguard Worker    <groupId>com.squareup.okhttp</groupId>
8*ab625e41SAndroid Build Coastguard Worker    <artifactId>parent</artifactId>
9*ab625e41SAndroid Build Coastguard Worker    <version>2.7.5</version>
10*ab625e41SAndroid Build Coastguard Worker  </parent>
11*ab625e41SAndroid Build Coastguard Worker
12*ab625e41SAndroid Build Coastguard Worker  <artifactId>okhttp-android-support</artifactId>
13*ab625e41SAndroid Build Coastguard Worker  <name>OkHttp Android Platform Support</name>
14*ab625e41SAndroid Build Coastguard Worker  <description>Classes to support the Android platform's use of OkHttp (not required for most developers).</description>
15*ab625e41SAndroid Build Coastguard Worker
16*ab625e41SAndroid Build Coastguard Worker  <dependencies>
17*ab625e41SAndroid Build Coastguard Worker    <dependency>
18*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
19*ab625e41SAndroid Build Coastguard Worker      <artifactId>okhttp-testing-support</artifactId>
20*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
21*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
22*ab625e41SAndroid Build Coastguard Worker    </dependency>
23*ab625e41SAndroid Build Coastguard Worker    <dependency>
24*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
25*ab625e41SAndroid Build Coastguard Worker      <artifactId>okhttp-urlconnection</artifactId>
26*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
27*ab625e41SAndroid Build Coastguard Worker    </dependency>
28*ab625e41SAndroid Build Coastguard Worker
29*ab625e41SAndroid Build Coastguard Worker    <dependency>
30*ab625e41SAndroid Build Coastguard Worker      <groupId>junit</groupId>
31*ab625e41SAndroid Build Coastguard Worker      <artifactId>junit</artifactId>
32*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
33*ab625e41SAndroid Build Coastguard Worker    </dependency>
34*ab625e41SAndroid Build Coastguard Worker    <dependency>
35*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
36*ab625e41SAndroid Build Coastguard Worker      <artifactId>mockwebserver</artifactId>
37*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
38*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
39*ab625e41SAndroid Build Coastguard Worker    </dependency>
40*ab625e41SAndroid Build Coastguard Worker  </dependencies>
41*ab625e41SAndroid Build Coastguard Worker
42*ab625e41SAndroid Build Coastguard Worker  <build>
43*ab625e41SAndroid Build Coastguard Worker    <plugins>
44*ab625e41SAndroid Build Coastguard Worker      <plugin>
45*ab625e41SAndroid Build Coastguard Worker        <groupId>org.apache.maven.plugins</groupId>
46*ab625e41SAndroid Build Coastguard Worker        <artifactId>maven-javadoc-plugin</artifactId>
47*ab625e41SAndroid Build Coastguard Worker        <configuration>
48*ab625e41SAndroid Build Coastguard Worker          <excludePackageNames>com.squareup.okhttp.internal.*</excludePackageNames>
49*ab625e41SAndroid Build Coastguard Worker          <links>
50*ab625e41SAndroid Build Coastguard Worker            <link>http://square.github.io/okhttp/javadoc/</link>
51*ab625e41SAndroid Build Coastguard Worker          </links>
52*ab625e41SAndroid Build Coastguard Worker        </configuration>
53*ab625e41SAndroid Build Coastguard Worker      </plugin>
54*ab625e41SAndroid Build Coastguard Worker    </plugins>
55*ab625e41SAndroid Build Coastguard Worker  </build>
56*ab625e41SAndroid Build Coastguard Worker</project>
57