v4.1.0: Merged ReplacedWith into DeprecatedSince
I merged the @ReplacedWith
annotation into the @DeprecatedSince
annotation.
The annotation may now display two arguments: The first one being the version of deprecation and the second an optional replacement for the method/field.
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.1.0'
}
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.1.0</version>
</dependency>
</dependencies>