Quick Start Guide
1. Add Solution Center Maven Repository
Open your project's pom.xml
file and add the Solution Center Maven repository to the
<repositories></repositories>
section of your pom.xml
as follows:
<repositories>
...
<!-- HMS Networks, MU Americas Solution Center Maven Repo -->
<repository>
<id>sc-java-maven-repo</id>
<name>HMS Networks, MU Americas Solution Center Maven Repo</name>
<url>https://github.com/hms-networks/sc-java-maven-repo/raw/main/</url>
</repository>
...
</repositories>
2. Add Library Dependency
Once the Solution Center Maven repository has been added to your pom.xml
file, add the library
dependency to your project by adding the following <dependency></dependency>
block in the
<dependencies></dependencies>
section of your pom.xml
as follows:
<dependencies>
...
<dependency>
<groupId>com.hms_networks.americas.sc</groupId>
<artifactId>extensions</artifactId>
<version>1.16.2</version>
</dependency>
...
</dependencies>