
* Moved 'ems-core' into 'nebulous' dir, and updated it from main repo. * Add 'ems-nebulous' plugin code, the 'metric-model' specs, and a top-level pom.xml to build everything (including EMS-Nebulous image) * Added .gitattributes and changed EOL to LF in top-level files. * Also adopting code to pass Zuul checks Change-Id: Ic414a1fa382d0a9112cbc805375cf603af59cd37
67 lines
2.5 KiB
XML
67 lines
2.5 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-client-install</artifactId>
|
|
<name>EMS - Baguette Client install utilities</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>gr.iccs.imu.ems</groupId>
|
|
<artifactId>baguette-server</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>compile</scope>
|
|
</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>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.rauschig/jarchivelib -->
|
|
<dependency>
|
|
<groupId>org.rauschig</groupId>
|
|
<artifactId>jarchivelib</artifactId>
|
|
<version>1.2.0</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
|
|
<dependency>
|
|
<groupId>org.yaml</groupId>
|
|
<artifactId>snakeyaml</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|