Skip to content

Commit dbb7f1b

Browse files
Added more dependencies
1 parent 27ec988 commit dbb7f1b

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

pom.xml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
45
<modelVersion>4.0.0</modelVersion>
56

67
<parent>
78
<groupId>org.springframework.boot</groupId>
89
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>2.4.2</version><!-- Update Property spring-boot-starter-parent.version as well with this -->
10+
<version>2.4.2</version> <!-- Update Property spring-boot-starter-parent.version as well with this -->
1011
</parent>
1112

1213
<groupId>com.dishant</groupId>
@@ -21,13 +22,16 @@
2122
<spring-cloud.version>Hoxton.SR10</spring-cloud.version>
2223
<spring-cloud-starter.version>3.0.2</spring-cloud-starter.version>
2324
<netflix-eureka-client.version>3.0.1</netflix-eureka-client.version>
25+
<mantis-runtime.version>1.3.25</mantis-runtime.version>
26+
<jackson-databind.version>2.12.1</jackson-databind.version>
2427
<jaxb.version>3.0.0</jaxb.version>
2528
<springdoc-openapi.version>1.5.4</springdoc-openapi.version>
2629
<liquibase.version>4.3.1</liquibase.version>
2730
<spring-kafka.version>2.6.5</spring-kafka.version>
2831
<commons-beanutils.version>1.9.4</commons-beanutils.version>
2932
<ehcache.version>3.9.0</ehcache.version>
3033
<cache-api.version>1.1.1</cache-api.version>
34+
<mockneat.version>0.4.5</mockneat.version>
3135
</properties>
3236

3337
<dependencies>
@@ -117,6 +121,11 @@
117121
<artifactId>spring-kafka</artifactId>
118122
<version>${spring-kafka.version}</version>
119123
</dependency>
124+
<dependency>
125+
<groupId>io.mantisrx</groupId>
126+
<artifactId>mantis-runtime</artifactId>
127+
<version>${mantis-runtime.version}</version>
128+
</dependency>
120129
<dependency>
121130
<groupId>org.springframework.boot</groupId>
122131
<artifactId>spring-boot-starter-cache</artifactId>
@@ -135,6 +144,11 @@
135144
<groupId>javax.validation</groupId>
136145
<artifactId>validation-api</artifactId>
137146
</dependency>
147+
<dependency>
148+
<groupId>com.fasterxml.jackson.core</groupId>
149+
<artifactId>jackson-databind</artifactId>
150+
<version>${jackson-databind.version}</version>
151+
</dependency>
138152
<dependency>
139153
<groupId>commons-beanutils</groupId>
140154
<artifactId>commons-beanutils</artifactId>
@@ -161,6 +175,12 @@
161175
<version>${spring-boot-starter-parent.version}</version>
162176
<scope>test</scope>
163177
</dependency>
178+
<dependency>
179+
<groupId>net.andreinc</groupId>
180+
<artifactId>mockneat</artifactId>
181+
<version>${mockneat.version}</version>
182+
<scope>test</scope>
183+
</dependency>
164184
</dependencies>
165185
</dependencyManagement>
166186

0 commit comments

Comments
 (0)