Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Adde Maven dependency example


 

The integration of SNMP4J-SMI in SNMP4J is very easy and complete. If you create an OID or Variable value from a String value or converting them using the toString() or format() methods, SNMP4J-SMI will parse and format the values as human readable object names and value combinations on-the-fly.

Add Maven dependency to include SNMP4J-SMI-PRO into your project

The following snippet adds the dependency to SNMP4J-SMI-PRO. The classifier is important to get all necessary since version SNMP4J-SMI-PRO 1.9.1 to include any transient dependencies into your build:

Code Block
languagejava
 <dependency>
   	<groupId>org.snmp4j.smi</groupId>
   	<artifactId>snmp4j-smi-pro</artifactId>
   	<version>1.9.1</version>
 	<classifier>jar-with-dependencies</classifier>
 </dependency>

Integrating SNMP4J-SMI into SNMP4J

...