Added jackson as a optional test dependency for integration tests

This commit is contained in:
Glenn Renfro
2022-10-13 15:01:34 -04:00
parent 01846cfc1e
commit cf8056880b
2 changed files with 8 additions and 0 deletions

View File

@@ -146,6 +146,12 @@
<artifactId>spring-cloud-stream</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>