pubg-api-wrapper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.kevcodez.pubg</groupId>
<artifactId>pubg-api-wrapper</artifactId>
<version>1.0.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>de.kevcodez.pubg</groupId>
<artifactId>pubg-api-wrapper</artifactId>
<version>1.0.0</version>
<name>PUBG-API-Wrapper</name>
<description>Playerunknowns Battlegrounds API wrapper written in Kotlin. Requires Java 1.8+</description>
<url>https://github.com/kevcodez/pubg-api-kotlin</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/kevcodez/pubg-api-kotlin/blob/master/LICENSE</url>
</license>
</licenses>
<developers>
<developer>
<id>kevcodez</id>
<name>Kevin Grüneberg</name>
<email>k.grueneberg1994@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:https://github.com/kevcodez/pubg-api-kotlin.git</connection>
<developerConnection>scm:git://github.com/kevcodez/pubg-api-kotlin.git</developerConnection>
<url>https://github.com/kevcodez/pubg-api-kotlin</url>
</scm>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.3.11</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<version>2.9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.8</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.12.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>