v3.2.0: Added @DeprecatedSince and @ReplacedWith annotations
This update introduces new annotations used.
@DeprecatedSinceinforms about since what version a method or field is deprecated.@ReplacedWithgives info about what method/field now should be used instead.
Installation
Gradle
Use this in your build.gradle
repositories{
jcenter()
}
dependencies{
compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.2.0'
}Maven
Use this in your pom.xml
<dependencies>
<dependency>
<groupId>com.andre601</groupId>
<artifactId>JavaBotBlockAPI</artifactId>
<version>3.2.0</version>
</dependency>
</dependencies>