HBASE-20175 hbase-spark needs scala dependency convergance

Signed-off-by: Mike Drob <mdrob@apache.org>
This commit is contained in:
Artem Ervits 2018-08-28 12:15:12 -04:00 committed by Mike Drob
parent 7c1fad4992
commit 131ab9b6a8
No known key found for this signature in database
GPG Key ID: 3E48C0C6EF362B9E
1 changed files with 12 additions and 0 deletions

View File

@ -117,12 +117,24 @@
<artifactId>scalatest_${scala.binary.version}</artifactId>
<version>2.2.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.scalamock</groupId>
<artifactId>scalamock-scalatest-support_${scala.binary.version}</artifactId>
<version>3.1.4</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>