83 lines
2.4 KiB
Plaintext
83 lines
2.4 KiB
Plaintext
![]() |
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
<artifactId>parent</artifactId>
|
||
|
<version>3.14.9</version>
|
||
|
</parent>
|
||
|
|
||
|
<artifactId>okhttp</artifactId>
|
||
|
<name>OkHttp</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.squareup.okio</groupId>
|
||
|
<artifactId>okio</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.conscrypt</groupId>
|
||
|
<artifactId>conscrypt-openjdk-uber</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.robolectric</groupId>
|
||
|
<artifactId>android-all</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.code.findbugs</groupId>
|
||
|
<artifactId>jsr305</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>animal-sniffer-annotations</artifactId>
|
||
|
<version>1.17</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>templating-maven-plugin</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>filter-sources</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>3.0.1</version>
|
||
|
<configuration>
|
||
|
<excludePackageNames>okhttp3.internal:okhttp3.internal.*</excludePackageNames>
|
||
|
<links>
|
||
|
<link>http://square.github.io/okio/</link>
|
||
|
</links>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.1.1</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifestEntries>
|
||
|
<Automatic-Module-Name>okhttp3</Automatic-Module-Name>
|
||
|
</manifestEntries>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|