buggy-okhttp
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-okhttp</artifactId>
<version>0.3.7-beta</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>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy</artifactId>
<version>0.3.7-beta</version>
</parent>
<artifactId>buggy-okhttp</artifactId>
<name>okHTTP3 utils</name>
<description>okHTTP3 client utils</description>
<version>0.3.7-beta</version>
<packaging>jar</packaging>
<properties>
<sonar.projectKey>org.touchbit:buggy-okhttp</sonar.projectKey>
</properties>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>4.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-core</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.touchbit.buggy</groupId>
<artifactId>buggy-core</artifactId>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>