Skip to content

v3.0.4: Removed RequestHandler

Choose a tag to compare

@Andre601 Andre601 released this 15 Dec 23:18
· 710 commits to master since this release

Like announced in an earlier release was the RequestHandler located under com.andre601.javabotblockapi now removed!
You need to use the PostAction or GetAction class now for all POST and GET actions.

Installation

Gradle

Use this in your build.gradle

repositories{
    jcenter()
}

dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.0.4'
}

Maven

Use this in your pom.xml

<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.0.4</version>
  </dependency>
</dependencies>