139 lines
4.0 KiB
XML
139 lines
4.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>3.2.4</version>
|
||
|
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.navi</groupId>
|
||
|
|
<artifactId>alfred-ingester</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>alfred-ingester</name>
|
||
|
|
<description>Alfred-ingester in Java</description>
|
||
|
|
<properties>
|
||
|
|
<log4j2.version>2.19.0</log4j2.version>
|
||
|
|
<min.code.coverage.percentage>75%</min.code.coverage.percentage>
|
||
|
|
<nexus.host>https://nexus.cmd.navi-tech.in</nexus.host>
|
||
|
|
<spring-cloud.version>2023.0.0</spring-cloud.version>
|
||
|
|
<java.version>21</java.version>
|
||
|
|
<kotlin.version>1.9.24</kotlin.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||
|
|
<artifactId>jackson-module-kotlin</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-reflect</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-stdlib</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-test-junit5</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.bucket4j</groupId>
|
||
|
|
<artifactId>bucket4j-core</artifactId>
|
||
|
|
<version>8.10.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>co.elastic.clients</groupId>
|
||
|
|
<artifactId>elasticsearch-java</artifactId>
|
||
|
|
<version>8.11.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.navi.sa.clients</groupId>
|
||
|
|
<artifactId>cache</artifactId>
|
||
|
|
<version>0.3-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
|
||
|
|
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<args>
|
||
|
|
<arg>-Xjsr305=strict</arg>
|
||
|
|
</args>
|
||
|
|
<compilerPlugins>
|
||
|
|
<plugin>spring</plugin>
|
||
|
|
</compilerPlugins>
|
||
|
|
</configuration>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-maven-allopen</artifactId>
|
||
|
|
<version>${kotlin.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>nexus</id>
|
||
|
|
<name>Snapshot</name>
|
||
|
|
<url>${nexus.host}/repository/maven-snapshots</url>
|
||
|
|
</repository>
|
||
|
|
<repository>
|
||
|
|
<id>Release</id>
|
||
|
|
<url>${nexus.host}/repository/maven-releases</url>
|
||
|
|
</repository>
|
||
|
|
<repository>
|
||
|
|
<id>MavenCentral</id>
|
||
|
|
<url>https://repo.maven.apache.org/maven2/</url>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.cloud</groupId>
|
||
|
|
<artifactId>spring-cloud-dependencies</artifactId>
|
||
|
|
<version>${spring-cloud.version}</version>
|
||
|
|
<type>pom</type>
|
||
|
|
<scope>import</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
|
||
|
|
</project>
|