Skip to content

Commit 891e61a

Browse files
author
Rob Winch
committed
LDAP-329: Spring IO powermock version to 1.5.4
1 parent f4fac6d commit 891e61a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

gradle/java-module.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ apply plugin: 'spring-io'
55

66
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : 'latest.integration'
77

8+
configurations.springIoTestRuntime.incoming.beforeResolve({
9+
configurations.springIoTestRuntime.resolutionStrategy.eachDependency { DependencyResolveDetails details ->
10+
if (details.requested.group == 'org.powermock') {
11+
details.useVersion '1.5.4'
12+
}
13+
}
14+
})
15+
816
configurations {
917
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
1018
}

0 commit comments

Comments
 (0)