|
1 | 1 | <?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" |
3 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 | <modelVersion>4.0.0</modelVersion> |
5 | 6 |
|
6 | 7 | <parent> |
7 | 8 | <groupId>org.springframework.boot</groupId> |
8 | 9 | <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 --> |
10 | 11 | </parent> |
11 | 12 |
|
12 | 13 | <groupId>com.dishant</groupId> |
|
21 | 22 | <spring-cloud.version>Hoxton.SR10</spring-cloud.version> |
22 | 23 | <spring-cloud-starter.version>3.0.2</spring-cloud-starter.version> |
23 | 24 | <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> |
24 | 27 | <jaxb.version>3.0.0</jaxb.version> |
25 | 28 | <springdoc-openapi.version>1.5.4</springdoc-openapi.version> |
26 | 29 | <liquibase.version>4.3.1</liquibase.version> |
27 | 30 | <spring-kafka.version>2.6.5</spring-kafka.version> |
28 | 31 | <commons-beanutils.version>1.9.4</commons-beanutils.version> |
29 | 32 | <ehcache.version>3.9.0</ehcache.version> |
30 | 33 | <cache-api.version>1.1.1</cache-api.version> |
| 34 | + <mockneat.version>0.4.5</mockneat.version> |
31 | 35 | </properties> |
32 | 36 |
|
33 | 37 | <dependencies> |
|
117 | 121 | <artifactId>spring-kafka</artifactId> |
118 | 122 | <version>${spring-kafka.version}</version> |
119 | 123 | </dependency> |
| 124 | + <dependency> |
| 125 | + <groupId>io.mantisrx</groupId> |
| 126 | + <artifactId>mantis-runtime</artifactId> |
| 127 | + <version>${mantis-runtime.version}</version> |
| 128 | + </dependency> |
120 | 129 | <dependency> |
121 | 130 | <groupId>org.springframework.boot</groupId> |
122 | 131 | <artifactId>spring-boot-starter-cache</artifactId> |
|
135 | 144 | <groupId>javax.validation</groupId> |
136 | 145 | <artifactId>validation-api</artifactId> |
137 | 146 | </dependency> |
| 147 | + <dependency> |
| 148 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 149 | + <artifactId>jackson-databind</artifactId> |
| 150 | + <version>${jackson-databind.version}</version> |
| 151 | + </dependency> |
138 | 152 | <dependency> |
139 | 153 | <groupId>commons-beanutils</groupId> |
140 | 154 | <artifactId>commons-beanutils</artifactId> |
|
161 | 175 | <version>${spring-boot-starter-parent.version}</version> |
162 | 176 | <scope>test</scope> |
163 | 177 | </dependency> |
| 178 | + <dependency> |
| 179 | + <groupId>net.andreinc</groupId> |
| 180 | + <artifactId>mockneat</artifactId> |
| 181 | + <version>${mockneat.version}</version> |
| 182 | + <scope>test</scope> |
| 183 | + </dependency> |
164 | 184 | </dependencies> |
165 | 185 | </dependencyManagement> |
166 | 186 |
|
|
0 commit comments