Snmp4j-smi-pro dependency missing in maven repo

Added the following dependency to the pom.xml

org.snmp4j.smi
snmp4j-smi-pro
1.9.9

The jar is not available in maven repo:

Failure to find org.snmp4j.smi:snmp4j-smi-pro:jar:1.9.9 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced

We have procured a license for SNMP4J-SMI-PRO. Is this a licensed jar? how do we use the license? Any pointers on how to use the dependency to compile the SMI-Manager

You can find the answers to your questions in the SNMP4J-SMI-PRO FAQ at:
https://doc.snmp.app/pages/viewpage.action?pageId=5799973

SNMP4J-SMI-PRO is not available from Maven Central, instead it need to be retrieved from the AGENTPP Maven repository directly. Details can be found in the link above.

Basically you need the following inn your Maven settings.xml:

<repositories>
  <repository>
	<id>snmp4j</id>
	<name>SNMP4J Releases</name>
	<releases>
	  <enabled>true</enabled>
	  <updatePolicy>always</updatePolicy>
	  <checksumPolicy>warn</checksumPolicy>
	</releases>
	<url>https://snmp.app/dist/release</url>
	<layout>default</layout>
  </repository>
</repositories>

Appreciate the help, Frank.