File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ subprojects {
53
53
var expectedClasspath =
54
54
if (runningGradle5) {
55
55
// without Gradle Module Metadata (only the POM is used)
56
- // - variant decision is made based on version suffix (android/jre) and not on actual Java version
56
+ // - variant decision is made based on version suffix (android/jre) and not on the actual environment
57
57
// - runtime classpath equals the compile classpath
58
58
// - dependency conflict with Google Collections is not detected and '9999.0' hack is present
59
59
if (name.startsWith(" android" )) {
@@ -63,10 +63,9 @@ subprojects {
63
63
}
64
64
} else {
65
65
// with Gradle Module Metadata
66
- // - variant is chosen based on Java version used independent of version suffix
67
- // (for Android projects, the 'android' variant is always chosen)
66
+ // - variant is chosen based on the actual environment, independent of version suffix
68
67
// - reduced runtime classpath is used (w/o annotation libraries)
69
- // - capability conflicts are detected between Google Collections and Listenablefuture
68
+ // - capability conflicts are detected between Google Collections and listenablefuture
70
69
if (name.contains(" Android" ) && ! name.contains(" JreConstraint" ) ) {
71
70
when {
72
71
name.contains(" RuntimeClasspath" ) -> {
You can’t perform that action at this time.
0 commit comments