Skip to content

v4.1.0: Merged ReplacedWith into DeprecatedSince

Choose a tag to compare

@Andre601 Andre601 released this 04 Jan 16:28
· 638 commits to master since this release

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>