DATAREST-1362 - Exclude outdated transient ByteBuddy dependency.

With the upgrade to a newer Mockito version we also require an upgrade to a newer ByteBuddy version. Out Hibernate version pulls an older version of ByteBuddy and so we need to exclude the transient dependency to use the newer ByteBuddy version.
This commit is contained in:
Mark Paluch
2019-04-10 08:57:37 +02:00
parent 4d16115a97
commit 1b15634759

View File

@@ -38,6 +38,12 @@
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>