We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4fac6d commit 891e61aCopy full SHA for 891e61a
gradle/java-module.gradle
@@ -5,6 +5,14 @@ apply plugin: 'spring-io'
5
6
ext.springIoVersion = project.hasProperty('platformVersion') ? platformVersion : 'latest.integration'
7
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
+
16
configurations {
17
jacoco //Configuration Group used by Sonar to provide Code Coverage using JaCoCo
18
}
0 commit comments