113 lines
3.9 KiB
XML
113 lines
3.9 KiB
XML
<!--
|
|
~ Copyright (C) 2017-2023 Institute of Communication and Computer Systems (imu.iccs.gr)
|
|
~
|
|
~ This Source Code Form is subject to the terms of the Mozilla Public License, v2.0, unless
|
|
~ Esper library is used, in which case it is subject to the terms of General Public License v2.0.
|
|
~ If a copy of the MPL was not distributed with this file, you can obtain one at
|
|
~ https://www.mozilla.org/en-US/MPL/2.0/
|
|
-->
|
|
<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>gr.iccs.imu.ems</groupId>
|
|
<artifactId>ems-core</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>broker-cep</artifactId>
|
|
<name>EMS - Broker+CEP Service</name>
|
|
|
|
<dependencies>
|
|
<!-- EMS dependencies -->
|
|
<dependency>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>util</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Spring-boot dependencies -->
|
|
<!--<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-activemq</artifactId>
|
|
</dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-jms</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-client</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
|
|
<!-- ActiveMQ dependencies -->
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-broker</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-kahadb-store</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-jaas</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-stomp</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-pool</artifactId>
|
|
<version>${activemq.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Esper dependencies -->
|
|
<dependency>
|
|
<groupId>com.espertech</groupId>
|
|
<artifactId>esper</artifactId>
|
|
<version>${esper.version}</version>
|
|
</dependency>
|
|
|
|
<!-- MathParser dependencies -->
|
|
<dependency>
|
|
<groupId>org.mariuszgromada.math</groupId>
|
|
<artifactId>MathParser.org-mXparser</artifactId>
|
|
<version>${mathparser.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Lombok project -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons Lang -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons CSV -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-csv</artifactId>
|
|
<version>1.7</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|