106 lines
3.2 KiB
XML
106 lines
3.2 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>ems-core</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>baguette-server</artifactId>
|
|
<name>EMS - Baguette Server</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>broker-cep</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>translator</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.sshd/apache-sshd -->
|
|
<dependency>
|
|
<groupId>org.apache.sshd</groupId>
|
|
<artifactId>apache-sshd</artifactId>
|
|
<version>${apache-sshd.version}</version>
|
|
<type>pom</type>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.sshd</groupId>
|
|
<artifactId>sshd-scp</artifactId>
|
|
<version>${apache-sshd.version}</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/javax.validation/validation-api -->
|
|
<dependency>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
<version>2.0.1.Final</version>
|
|
</dependency>
|
|
|
|
<!-- Apache Commons Text (for StringSubstitutor) -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
</dependency>
|
|
|
|
<!-- For importing: class org.glassfish.jersey.internal.guava.InetAddresses -->
|
|
<dependency>
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
<artifactId>jersey-common</artifactId>
|
|
<version>3.1.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|