Skip to main content

Using Library

Add Solution Center Maven Repository

The Ewon Flexy Extensions Library is available as a Maven dependency from the HMS Networks, MU Americas Solution Center Maven repository.

Before adding the dependency to your project, you must first add the Solution Center Maven repository to your pom.xml file, 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>

Add Library Dependency

Once the Solution Center Maven repository has been added to your pom.xml file, you can 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>