-
Notifications
You must be signed in to change notification settings - Fork 14
Installing the SDK
Rizwan Saeed edited this page Aug 16, 2019
·
1 revision
Building the API client library requires Maven to be installed.
Maven artifacts can be downloaded from the Open Source Software Repository Hosting (OSSRH) by adding the following to your pom.xml
<project>
...
<repositories>
<repository>
<id>osssrh</id>
<name>OSSRH</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.finbourne</groupId>
<artifactId>lusid-sdk</artifactId>
<version>{INSERT VERSION}</version>
</dependency>
...
</dependencies>
...
</project>