2024-07-07 23:20:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2020-09-21 01:58:32 +02:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.openhab.addons.bundles</groupId>
|
|
|
|
<artifactId>org.openhab.addons.reactor.bundles</artifactId>
|
2024-07-07 20:09:31 +02:00
|
|
|
<version>4.3.0-SNAPSHOT</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>org.openhab.binding.snmp</artifactId>
|
|
|
|
|
|
|
|
<name>openHAB Add-ons :: Bundles :: SNMP Binding</name>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2024-05-25 10:10:54 +02:00
|
|
|
<groupId>org.snmp4j</groupId>
|
|
|
|
<artifactId>snmp4j</artifactId>
|
2024-06-05 23:30:33 +02:00
|
|
|
<version>3.8.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.snmp4j</groupId>
|
|
|
|
<artifactId>snmp4j-unix-transport</artifactId>
|
|
|
|
<version>1.1.0</version>
|
2020-09-21 01:58:32 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|