bgg-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.marcioos</groupId>
<artifactId>bgg-client</artifactId>
<version>1.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.github.marcioos</groupId>
<artifactId>bgg-client</artifactId>
<version>1.0</version>
<name>bgg-client</name>
<description>Java and Android client for BoardGameGeek XML API 2</description>
<url>https://github.com/marcioos/bgg-client</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<id>marcioos</id>
<name>Marcio Oliveira</name>
<email>marciottlg@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:marcioos/bgg-client.git</connection>
<developerConnection>scm:git:git@github.com:marcioos/bgg-client.git</developerConnection>
<url>https://github.com/marcioos/bgg-client</url>
</scm>
<dependencies>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.8.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-simplexml</artifactId>
<version>2.8.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>xpp3</artifactId>
<groupId>*</groupId>
</exclusion>
<exclusion>
<artifactId>stax-api</artifactId>
<groupId>*</groupId>
</exclusion>
<exclusion>
<artifactId>stax</artifactId>
<groupId>*</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>