v4.0.4: Broken downloads
Sorry for all the updates, but it seems that the wrapper is no longer part of jcenter()
due to it being a different package?
For now, update the pom.xml/build.gradle, to the below ones.
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.0.4'
}
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.0.4</version>
</dependency>
</dependencies>