Skip to content

v4.0.4: Broken downloads

Choose a tag to compare

@Andre601 Andre601 released this 03 Jan 20:51
· 641 commits to master since this release

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>