Installation

Java SDK enables you to connect to the MindsDB server from Java using HTTP API. Read along to see how to install and test the MindsDB Java SDK.

Simple installation

To install the MindsDB Java SDK, add the following dependency to your pom.xml file:

<dependency>
    <groupId>io.github.md-abid-hussain</groupId>
    <artifactId>mindsdb-java-sdk</artifactId>
    <version>1.1.0</version>
</dependency>

Alternatively, you can use the following Maven command to add the dependency:

mvn install:install-file -Dfile=path/to/mindsdb-java-sdk-1.0.2.jar -DgroupId=io.github.md-abid-hussain -DartifactId=mindsdb-java-sdk -Dversion=1.0.2 -Dpackaging=jar

Other Installation

For additional installation options and details on using the MindsDB Java SDK, please visit the MindsDB Java SDK Maven Central Page where you can find comprehensive information on on how to integrate the SDK with various build tools and environments

API docs

API docs are available at:

MindsDB Java SDK API docs

Updated on