2021-10-04 11:14:28 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2021-10-05 00:43:11 +05:30
|
|
|
<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">
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-08-30 11:24:41 +05:30
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>com.navi.medici</groupId>
|
|
|
|
|
<artifactId>litmus</artifactId>
|
2024-03-22 10:03:05 +05:30
|
|
|
<version>3.0.2-RELEASE</version>
|
2021-08-30 11:24:41 +05:30
|
|
|
<packaging>pom</packaging>
|
2021-10-07 14:06:21 +05:30
|
|
|
<name>litmus</name>
|
2021-11-25 23:38:38 +05:30
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<nexus.host>https://nexus.cmd.navi-tech.in</nexus.host>
|
2021-12-29 11:48:42 +05:30
|
|
|
<log4j2.version>2.17.0</log4j2.version>
|
2021-11-25 23:38:38 +05:30
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>nexus</id>
|
|
|
|
|
<name>Releases</name>
|
|
|
|
|
<url>${nexus.host}/repository/maven-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>nexus</id>
|
|
|
|
|
<name>Snapshot</name>
|
|
|
|
|
<url>${nexus.host}/repository/maven-snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2021-08-30 11:24:41 +05:30
|
|
|
<modules>
|
|
|
|
|
<module>litmus-core</module>
|
|
|
|
|
<module>litmus-model</module>
|
2021-10-04 11:14:28 +05:30
|
|
|
<module>litmus-client</module>
|
2021-10-05 00:43:11 +05:30
|
|
|
<module>litmus-db</module>
|
|
|
|
|
<module>litmus-mock</module>
|
|
|
|
|
<module>litmus-liquibase</module>
|
|
|
|
|
<module>litmus-cache</module>
|
2021-10-07 14:06:21 +05:30
|
|
|
<module>litmus-proxy</module>
|
2021-10-24 03:47:54 +05:30
|
|
|
<module>litmus-util</module>
|
2021-08-30 11:24:41 +05:30
|
|
|
</modules>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-05 00:43:11 +05:30
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2021-11-26 01:54:10 +05:30
|
|
|
<version>2.6.0</version>
|
2021-10-05 00:43:11 +05:30
|
|
|
</parent>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-08-30 11:24:41 +05:30
|
|
|
<dependencies>
|
2021-10-05 00:43:11 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-06 12:18:58 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-04 11:14:28 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.20</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-04 11:14:28 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>co.elastic.logging</groupId>
|
|
|
|
|
<artifactId>log4j2-ecs-layout</artifactId>
|
2021-10-05 00:43:11 +05:30
|
|
|
<version>1.1.0</version>
|
2021-10-04 11:14:28 +05:30
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-04 11:14:28 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
|
<version>3.0.2</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-08-30 11:24:41 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
2021-10-05 00:43:11 +05:30
|
|
|
<version>4.13.2</version>
|
2021-08-30 11:24:41 +05:30
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2022-04-25 19:11:46 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-10-21 20:53:01 +05:30
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-api</artifactId>
|
2021-12-13 11:22:32 +05:30
|
|
|
<version>${log4j2.version}</version>
|
2021-10-21 20:53:01 +05:30
|
|
|
</dependency>
|
2021-08-30 11:24:41 +05:30
|
|
|
</dependencies>
|
2021-10-24 03:47:54 +05:30
|
|
|
|
2021-08-30 11:24:41 +05:30
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
2021-10-28 03:36:07 +05:30
|
|
|
<source>17</source>
|
|
|
|
|
<target>17</target>
|
2021-10-05 00:43:11 +05:30
|
|
|
<annotationProcessorPaths>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.20</version>
|
|
|
|
|
</path>
|
|
|
|
|
</annotationProcessorPaths>
|
2021-08-30 11:24:41 +05:30
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|