callfire-api-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.callfire</groupId> <artifactId>callfire-api-client</artifactId> <version>1.8.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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"> <modelVersion>4.0.0</modelVersion> <groupId>com.callfire</groupId> <artifactId>callfire-api-client</artifactId> <packaging>jar</packaging> <description>Callfire API Java Client</description> <url>https://github.com/CallFire/callfire-api-client-java</url> <version>1.8.0</version> <licenses> <license> <name>MIT License</name> <url>https://github.com/CallFire/callfire-api-client-java/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>CallFire Inc.</name> <url>https://www.callfire.com</url> </organization> <inceptionYear>2015</inceptionYear> <scm> <url>https://github.com/CallFire/callfire-api-client-java</url> <connection>scm:git:https://github.com/CallFire/callfire-api-client-java.git</connection> <developerConnection>scm:git:git@github.com:CallFire/callfire-api-client-java.git</developerConnection> </scm> <developers> <developer> <id>callfire</id> <name>CallFire Inc.</name> <url>https://developers.callfire.com</url> </developer> </developers> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.9.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.9.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.9.9.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> <version>4.5.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.5.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>hamcrest</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>2.28.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>*</groupId> </exclusion> <exclusion> <artifactId>hamcrest</artifactId> <groupId>*</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> </project>