stoty commented on pull request #25:
URL: https://github.com/apache/phoenix-connectors/pull/25#issuecomment-671259376
For the spark connector, I found that this section is enough to fix the test
failure:
```
<dependencyManagement>
<dependencies>
<!-- Guava is excluded because of SPARK-6149. The Guava version
referenced in this module is
15.0, which causes runtime incompatibility issues. -->
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-scala_${scala.binary.version}</artifactId>
<version>${fasterxml.jackson.version}</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]