Skip to content

Commit b4b8153

Browse files
Don't extend configuration testCompile from shaded
* using testCompile has been discouraged since Gradle 3.4 * made sure dependencies on all other configurations are unchanged * no need to change it to testImplementation since testCompileClasspath and testRuntimeClasspath extend from implementation
1 parent 7a9d09b commit b4b8153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/shading.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'com.gradleup.shadow'
44

55
configurations {
66
shaded
7-
[apiElements, implementation, compileOnly, testCompile]*.extendsFrom shaded
7+
[apiElements, implementation, compileOnly]*.extendsFrom shaded
88
}
99
configurations.api.canBeResolved = true
1010

0 commit comments

Comments
 (0)