Skip to content

v3.2.0: Added @DeprecatedSince and @ReplacedWith annotations

Choose a tag to compare

@Andre601Andre601 released this 24 Dec 21:21
· 687 commits to master since this release

This update introduces new annotations used.

  • @DeprecatedSince informs about since what version a method or field is deprecated.
  • @ReplacedWith gives 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>