analytics-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.threewks.analytics</groupId>
<artifactId>analytics-client</artifactId>
<version>1.0</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"> <parent> <groupId>com.threewks.thundr</groupId> <artifactId>thundr-parent</artifactId> <version>3</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.threewks.analytics</groupId> <artifactId>analytics-client</artifactId> <version>1.0</version> <packaging>jar</packaging> <name>analytics-client</name> <url>https://github.com/3wks/analytics-client</url> <description>Client library for using 3wks Analytics.</description> <organization> <name>3wks</name> <url>http://www.3wks.com.au</url> </organization> <developers> <developer> <id>nick</id> <name>Nicholas Okunew</name> <email>nick@3wks.com.au</email> </developer> <developer> <id>shane</id> <name>Shane Bell</name> <email>shane@3wks.com.au</email> </developer> </developers> <!-- Licensing --> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/3wks/analytics-client</connection> <developerConnection>scm:git:https://github.com/3wks/analytics-client</developerConnection> <url>https://github.com/3wks/analytics-client</url> <tag>analytics-client-1.0</tag> </scm> <dependencies> <!-- GSON --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.4</version> </dependency> <!-- Servlet --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <!-- Joda --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.1</version> </dependency> <!-- Commons IO --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> <!-- Commons Lang3 --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency> </dependencies> </project>