xref: /aosp_15_r20/external/okhttp/okhttp-urlconnection/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-urlconnection</artifactId>
13*ab625e41SAndroid Build Coastguard Worker  <name>OkHttp URLConnection</name>
14*ab625e41SAndroid Build Coastguard Worker
15*ab625e41SAndroid Build Coastguard Worker  <dependencies>
16*ab625e41SAndroid Build Coastguard Worker    <dependency>
17*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
18*ab625e41SAndroid Build Coastguard Worker      <artifactId>okhttp</artifactId>
19*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
20*ab625e41SAndroid Build Coastguard Worker    </dependency>
21*ab625e41SAndroid Build Coastguard Worker    <dependency>
22*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
23*ab625e41SAndroid Build Coastguard Worker      <artifactId>okhttp-testing-support</artifactId>
24*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
25*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
26*ab625e41SAndroid Build Coastguard Worker    </dependency>
27*ab625e41SAndroid Build Coastguard Worker
28*ab625e41SAndroid Build Coastguard Worker    <dependency>
29*ab625e41SAndroid Build Coastguard Worker      <groupId>junit</groupId>
30*ab625e41SAndroid Build Coastguard Worker      <artifactId>junit</artifactId>
31*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
32*ab625e41SAndroid Build Coastguard Worker    </dependency>
33*ab625e41SAndroid Build Coastguard Worker    <dependency>
34*ab625e41SAndroid Build Coastguard Worker      <groupId>com.squareup.okhttp</groupId>
35*ab625e41SAndroid Build Coastguard Worker      <artifactId>mockwebserver</artifactId>
36*ab625e41SAndroid Build Coastguard Worker      <version>${project.version}</version>
37*ab625e41SAndroid Build Coastguard Worker      <scope>test</scope>
38*ab625e41SAndroid Build Coastguard Worker    </dependency>
39*ab625e41SAndroid Build Coastguard Worker  </dependencies>
40*ab625e41SAndroid Build Coastguard Worker
41*ab625e41SAndroid Build Coastguard Worker  <build>
42*ab625e41SAndroid Build Coastguard Worker    <plugins>
43*ab625e41SAndroid Build Coastguard Worker      <plugin>
44*ab625e41SAndroid Build Coastguard Worker        <groupId>org.apache.maven.plugins</groupId>
45*ab625e41SAndroid Build Coastguard Worker        <artifactId>maven-javadoc-plugin</artifactId>
46*ab625e41SAndroid Build Coastguard Worker        <configuration>
47*ab625e41SAndroid Build Coastguard Worker          <excludePackageNames>com.squareup.okhttp.internal.*</excludePackageNames>
48*ab625e41SAndroid Build Coastguard Worker          <links>
49*ab625e41SAndroid Build Coastguard Worker            <link>http://square.github.io/okhttp/javadoc/</link>
50*ab625e41SAndroid Build Coastguard Worker          </links>
51*ab625e41SAndroid Build Coastguard Worker        </configuration>
52*ab625e41SAndroid Build Coastguard Worker      </plugin>
53*ab625e41SAndroid Build Coastguard Worker    </plugins>
54*ab625e41SAndroid Build Coastguard Worker  </build>
55*ab625e41SAndroid Build Coastguard Worker</project>
56