2020-10-03 21:28:40 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-09 20:09:43 +05:30
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-10-03 21:28:40 +02:00
|
|
|
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>
|
|
|
|
<artifactId>mantis</artifactId>
|
2021-04-02 22:46:25 +05:30
|
|
|
<name>mantis</name>
|
2020-10-03 21:28:40 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>Sample project for Netflix Mantis</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.mantisrx</groupId>
|
|
|
|
<artifactId>mantis-runtime</artifactId>
|
2022-05-29 09:34:45 +02:00
|
|
|
<version>${mantis-runtime.version}</version>
|
2020-10-03 21:28:40 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.andreinc.mockneat</groupId>
|
|
|
|
<artifactId>mockneat</artifactId>
|
2022-05-29 09:34:45 +02:00
|
|
|
<version>${mockneat.version}</version>
|
2020-10-03 21:28:40 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2023-12-03 21:19:12 +02:00
|
|
|
<version>${lombok.version}</version>
|
2020-10-03 21:28:40 +02:00
|
|
|
</dependency>
|
2020-10-16 13:07:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webflux</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.projectreactor.netty</groupId>
|
|
|
|
<artifactId>reactor-netty</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-06-27 11:35:06 +03:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.netflix.spectator</groupId>
|
|
|
|
<artifactId>spectator-api</artifactId>
|
|
|
|
<version>${spectator-api.version}</version>
|
|
|
|
</dependency>
|
2020-10-03 21:28:40 +02:00
|
|
|
</dependencies>
|
2021-08-03 00:27:15 +05:30
|
|
|
|
2020-10-03 21:28:40 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2021-08-03 00:27:15 +05:30
|
|
|
<id>jcenter</id>
|
2021-05-16 16:40:29 +05:30
|
|
|
<url>https://jcenter.bintray.com/</url>
|
2020-10-03 21:28:40 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2022-05-29 09:34:45 +02:00
|
|
|
<properties>
|
2023-06-27 11:35:06 +03:00
|
|
|
<mantis-runtime.version>2.0.42</mantis-runtime.version>
|
2022-05-29 09:34:45 +02:00
|
|
|
<mockneat.version>0.4.2</mockneat.version>
|
2023-06-27 11:35:06 +03:00
|
|
|
<spectator-api.version>1.6.5</spectator-api.version>
|
2022-05-29 09:34:45 +02:00
|
|
|
</properties>
|
|
|
|
|
2021-05-09 20:09:43 +05:30
|
|
|
</project>
|