Package org.botblock.javabotblockapi.core

This is the core module used across all other modules.
When using either of the other modules is this one here required to be installed too.

Installation

Please replace API_VERSION with the latest release on Bintray.

Gradle (recommended)


 repositories{
     maven{ url = 'https://repo.codemc.io/repository/maven-public' }
 }

 dependencies{
     compile group: 'org.botblock', name: 'javabotblockapi-core', version: API_VERSION
 }
 

Maven


 <repositories>
     <repository>
         <id>codemc</id>
         <name>CodeMC-Nexus</name>
         <url>https://repo.codemc.io/repository/maven-public</url>
     </repository>
 </repositories>

 <dependencies>
     <dependency>
         <groupId>org.botblock</groupId>
         <artifactId>javabotblockapi-core</artifactId>
         <version>API_VERSION</version>
     </dependency>
 </dependencies>
 

Manual

We do not recommend using jar files directly and instead use one of the above dependency management systems.

If you still want to do it manually, or can't use one of the other option, head over to the GitHub releases page and download the jar files from there.

Note that you will not receive any support when using this method.