mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
Bump PowerMock to 1.7.3
And also drop the powermock-classloading-xstream dependency as it is currently not used.
This commit is contained in:
parent
4cff9ddfa0
commit
e5d93e58a1
2 changed files with 7 additions and 7 deletions
|
@ -8,6 +8,7 @@ Smack core components."""
|
|||
|
||||
ext {
|
||||
xmlUnitVersion = "2.6.0"
|
||||
powerMockVersion = "1.7.3"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
@ -20,10 +21,9 @@ dependencies {
|
|||
testCompile "org.junit.vintage:junit-vintage-engine:$junitVersion"
|
||||
testCompile "org.xmlunit:xmlunit-core:$xmlUnitVersion"
|
||||
testCompile "org.xmlunit:xmlunit-legacy:$xmlUnitVersion"
|
||||
testCompile "org.powermock:powermock-module-junit4:1.6.4"
|
||||
testCompile "org.powermock:powermock-module-junit4-rule:1.6.4"
|
||||
testCompile "org.powermock:powermock-api-mockito:1.6.4"
|
||||
testCompile "org.powermock:powermock-classloading-xstream:1.6.4"
|
||||
testCompile "org.powermock:powermock-module-junit4:$powerMockVersion"
|
||||
testCompile "org.powermock:powermock-module-junit4-rule:$powerMockVersion"
|
||||
testCompile "org.powermock:powermock-api-mockito2:$powerMockVersion"
|
||||
testCompile 'com.jamesmurty.utils:java-xmlbuilder:0.6'
|
||||
testCompile 'net.iharder:base64:2.3.8'
|
||||
}
|
||||
|
|
|
@ -16,9 +16,9 @@
|
|||
*/
|
||||
package org.jivesoftware.util;
|
||||
|
||||
import static org.mockito.Matchers.anyInt;
|
||||
import static org.mockito.Matchers.anyLong;
|
||||
import static org.mockito.Matchers.isA;
|
||||
import static org.mockito.ArgumentMatchers.anyInt;
|
||||
import static org.mockito.ArgumentMatchers.anyLong;
|
||||
import static org.mockito.ArgumentMatchers.isA;
|
||||
import static org.mockito.Mockito.doAnswer;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
|
Loading…
Reference in a new issue