Skip to content

v3.3.0: Changed version setup

Compare
Choose a tag to compare
@Andre601 Andre601 released this 31 Dec 15:57
· 669 commits to master since this release

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>