Merge pull request #9460 from kwoyke/JAVA-1782-main

JAVA-1782: Add byte-buddy explicitly to avoid versions confilict
This commit is contained in:
kwoyke 2020-06-08 11:45:12 +02:00 committed by GitHub
commit 31c303e2b6
3 changed files with 19 additions and 0 deletions

View File

@ -151,6 +151,13 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>

View File

@ -55,6 +55,12 @@
<artifactId>hibernate-testing</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>

View File

@ -50,6 +50,12 @@
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.compatible.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byte-buddy.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>