outseta-client

Used in: 0 components

Overview

Description

A Java Client for easily accessing the Outseta API.

Snippets

<dependency>
    <groupId>io.github.hamadhassan3</groupId>
    <artifactId>outseta-client</artifactId>
    <version>3.0.0</version>
</dependency>

Maven POM File

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>io.github.hamadhassan3</groupId>
  <artifactId>outseta-client</artifactId>
  <version>3.0.0</version>
  <name>Outseta Client</name>
  <description>A Java Client for easily accessing the Outseta API.</description>
  <url>https://github.com/hamadhassan3/outseta-client</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>hamadhassan3</id>
      <name>Hammad Hassan</name>
      <email>hamadhassan3@gmail.com</email>
      <organization>io.github.hamadhassan3</organization>
      <organizationUrl>https://github.com/hamadhassan3</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>git@github.com:hamadhassan3/outseta-client.git</connection>
    <developerConnection>git@github.com:hamadhassan3/outseta-client.git</developerConnection>
    <url>https://github.com/hamadhassan3/outseta-client.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.15.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.15.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.15.2</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpclient</artifactId>
      <version>4.5.14</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>