Skip to content

Commit 1b15634

Browse files
committed
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.
1 parent 4d16115 commit 1b15634

File tree

1 file changed

+6
-0
lines changed
  • spring-data-rest-tests/spring-data-rest-tests-jpa

1 file changed

+6
-0
lines changed

spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@
3838
<artifactId>hibernate-entitymanager</artifactId>
3939
<version>${hibernate.version}</version>
4040
<scope>test</scope>
41+
<exclusions>
42+
<exclusion>
43+
<groupId>net.bytebuddy</groupId>
44+
<artifactId>byte-buddy</artifactId>
45+
</exclusion>
46+
</exclusions>
4147
</dependency>
4248

4349
<dependency>

0 commit comments

Comments
 (0)