mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2025-12-24 22:27:00 +00:00
61 lines
1.9 KiB
XML
61 lines
1.9 KiB
XML
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<artifactId>tip-wlan-cloud-root-pom</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../../wlan-cloud-root</relativePath>
|
|
</parent>
|
|
<artifactId>opensync-gateway</artifactId>
|
|
<name>opensync-gateway</name>
|
|
<description>Redirector and Controller for OpenSync</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>base-container</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>${tip-wlan-cloud.release.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<artifactId>opensync-ext-interface</artifactId>
|
|
<version>${tip-wlan-cloud.release.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.vmware.ovsdb</groupId>
|
|
<artifactId>ovsdb-client</artifactId>
|
|
<version>1.0.1</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- MQTT dependencies BEGIN -->
|
|
<dependency>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<artifactId>tip-wlan-opensync-protobuf</artifactId>
|
|
<version>${tip-wlan-cloud.release.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.protobuf</groupId>
|
|
<artifactId>protobuf-java-util</artifactId>
|
|
<version>3.11.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.fusesource.mqtt-client</groupId>
|
|
<artifactId>mqtt-client</artifactId>
|
|
<version>1.12</version>
|
|
</dependency>
|
|
<!-- MQTT dependencies END -->
|
|
|
|
</dependencies>
|
|
|
|
</project>
|
|
|