[JAVA-134] Added byte-buddy dependencies with version used by mockito to avoid versions conflict
This commit is contained in:
parent
8894f16741
commit
1c50dedb91
9
pom.xml
9
pom.xml
|
@ -69,6 +69,12 @@
|
|||
<version>${hamcrest-all.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.bytebuddy</groupId>
|
||||
<artifactId>byte-buddy</artifactId>
|
||||
<version>${byte-buddy.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
|
@ -1330,7 +1336,8 @@
|
|||
<junit.version>4.12</junit.version>
|
||||
<hamcrest.version>2.2</hamcrest.version>
|
||||
<hamcrest-all.version>1.3</hamcrest-all.version>
|
||||
<mockito.version>3.3.0</mockito.version>
|
||||
<mockito.version>3.3.0</mockito.version>
|
||||
<byte-buddy.version>1.10.5</byte-buddy.version>
|
||||
|
||||
<!-- logging -->
|
||||
<org.slf4j.version>1.7.30</org.slf4j.version>
|
||||
|
|
Loading…
Reference in New Issue