mirror of
https://github.com/Telecominfraproject/wlan-cloud-services.git
synced 2026-01-27 10:23:02 +00:00
95 lines
3.2 KiB
XML
95 lines
3.2 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>1.3.0-SNAPSHOT</version>
|
|
<relativePath>../../wlan-cloud-root</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>dashboard-sp</artifactId>
|
|
<name>dashboard-sp</name>
|
|
<description>Stream Processors for computing aggregated statistics for the dashboard.</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>base-stream-consumer</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<!-- this is needed so that the stream processors can directly post messages to topics - to aggregate partial results, etc. -->
|
|
<artifactId>base-stream-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<artifactId>service-metric-models</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>system-event-models</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>base-models</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>routing-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>equipment-gateway-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>equipment-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>location-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>profile-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>alarm-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>status-service-interface</artifactId>
|
|
<groupId>com.telecominfraproject.wlan</groupId>
|
|
<version>1.3.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<!-- models used by the application logic of the stream processor -->
|
|
|
|
</dependencies>
|
|
</project>
|
|
|
|
|