Fiing schema registry tests

This commit is contained in:
Soby Chacko
2024-02-13 17:47:07 -05:00
parent 977b5e3a4c
commit 539435a724
3 changed files with 18 additions and 0 deletions

View File

@@ -39,6 +39,12 @@
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<!--TODO: investigate why we need this hard version here and not inheriting from Spring Boot-->
<version>2.15.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>

View File

@@ -36,6 +36,12 @@
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<!--TODO: investigate why we need this hard version here and not inheriting from Spring Boot-->
<version>2.15.3</version>
</dependency>
</dependencies>
</project>

View File

@@ -37,6 +37,12 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<!--TODO: investigate why we need this hard version here and not inheriting from Spring Boot-->
<version>2.15.3</version>
</dependency>
</dependencies>
<build>