v3.3.0: Changed version setup
The displayed version should now look a bit different than normal.
If this release is successful, will the newly displayed version be 3.3.0_0
The reason for this is the changed way, the version is created/set in the build.gradle, using a new system, that adds a build-number at the end of the version itself.
Installation
Gradle
Use this in your build.gradle
repositories{
jcenter()
}
dependencies{
compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.3.0_0'
}
Maven
Use this in your pom.xml
<dependencies>
<dependency>
<groupId>com.andre601</groupId>
<artifactId>JavaBotBlockAPI</artifactId>
<version>3.3.0_0</version>
</dependency>
</dependencies>