Sonde Health API Platform Documentation

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Overview

SDK will provide functionalities to achieve the use cases possible through Sonde services.

Java SDK

Java SDK is available as a standard Maven package. This SDK is published on the Sonde Health custom maven repository.

Follow the below steps to include Sonde Java SDK as a dependency in your server application.

  • Add repository tag in pom.xml

    <repositories>
        <repository>
            <id>sondehealth-mvn-central</id>
            <url>http://sondehealth-mvn-central.s3-website.ap-south-1.amazonaws.com/release</url>
        </repository>
    </repositories>
  • Add below dependency in dependencies tag of pom.xml

    <dependency>
       <groupId>com.sondehealth</groupId>
       <artifactId>sondehealth-java</artifactId>
       <version>1.0.0</version>
    </dependency>

  • No labels