v3.0.4: Removed RequestHandler
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>