restclient
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.peertopark.java</groupId>
<artifactId>restclient</artifactId>
<version>3.5.2</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>com.peertopark.java</groupId>
<artifactId>parent</artifactId>
<version>3.5.2</version>
</parent>
<artifactId>restclient</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}.${project.artifactId}</name>
<description>Peer to Park Java Rest Client package</description>
<url>https://www.peertopark.com/</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${org.glassfish.jersey.core.jersey-client.version}</version>
</dependency>
<dependency>
<groupId>com.peertopark.java</groupId>
<artifactId>commons</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>