kat-okhttp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>plus.kat</groupId>
<artifactId>kat-okhttp</artifactId>
<version>0.0.5</version>
</dependency><?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>kat-parent</artifactId>
<groupId>plus.kat</groupId>
<version>0.0.5</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>kat-okhttp</artifactId>
<packaging>jar</packaging>
<properties>
<okhttp.version>4.10.0</okhttp.version>
</properties>
<dependencies>
<dependency>
<groupId>plus.kat</groupId>
<artifactId>kat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>