Skip to content

v4.2.1: Removed unused import.

Choose a tag to compare

@Andre601 Andre601 released this 05 Jan 16:56
· 632 commits to master since this release

A import from org.apache was somehow added to the project. It's now removed.

Installation

Gradle

Use this in your build.gradle

repositories{
    maven { url = 'https://dl.bintray.com/andre601/maven' }
}

dependencies{
    compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '4.2.1'
}

Maven

Use this in your pom.xml

<repositories>
  <repository>
    <id>javabotblockapi</id>
    <url>https://dl.bintray.com/andre601/maven</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>4.2.1</version>
  </dependency>
</dependencies>