Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
s148719 committed Oct 19, 2023
1 parent 9743c20 commit 0fb3960
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
<mockk.version>4.0.2</mockk.version>
<kotlin-logging-jvm.version>3.0.5</kotlin-logging-jvm.version>
<flyway.version>9.22.3</flyway.version>
<jackson.version>2.15.3</jackson.version>
<testcontainers.version>1.19.1</testcontainers.version>
<tomcat-embed-core.version>10.1.15</tomcat-embed-core.version>
</properties>

<repositories>
Expand All @@ -38,6 +40,16 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
Expand All @@ -53,6 +65,11 @@
<artifactId>spring-kafka</artifactId>
<version>3.0.12</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>${tomcat-embed-core.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -159,7 +176,7 @@
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
<version>2.15.3</version>
<version>${jackson.version}</version>
</dependency>


Expand Down Expand Up @@ -313,11 +330,6 @@
<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>
<version>${project.parent.version}</version>
</plugin>
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
Expand All @@ -333,6 +345,11 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${project.parent.version}</version>
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
Expand Down

0 comments on commit 0fb3960

Please sign in to comment.