69 lines
1.9 KiB
XML
69 lines
1.9 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>3.0.2-RELEASE</version>
|
|
</parent>
|
|
|
|
<artifactId>litmus-proxy</artifactId>
|
|
<version>3.0.2-RELEASE</version>
|
|
<packaging>jar</packaging>
|
|
<name>litmus-proxy</name>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-model</artifactId>
|
|
<version>3.0.2-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-client</artifactId>
|
|
<version>3.0.2-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.navi.medici</groupId>
|
|
<artifactId>litmus-util</artifactId>
|
|
<version>3.0.2-RELEASE</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
<version>1.6.8</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.8.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|