71 lines
2.0 KiB
XML
71 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<artifactId>litmus</artifactId>
|
|
<groupId>com.navi.medici</groupId>
|
|
<version>2.0.6-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>litmus-mock</artifactId>
|
|
<version>2.0.6-RELEASE</version>
|
|
<packaging>jar</packaging>
|
|
<name>litmus-mock</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-model</artifactId>
|
|
<version>2.0.6-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-client</artifactId>
|
|
<version>2.0.6-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
<artifactId>okhttp</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
<version>1.8.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
<version>140</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>4.0.1</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|