Skip to content

Commit 93b49c1

Browse files
committed
Prevent another transitive dependence upgrade due to Java 11
For some reason this issue only gets exposed when running `./gradlew aggregatedJavadocs` so it did not get caught by regular CI jobs.
1 parent aa9fb0f commit 93b49c1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ subprojects { subproject ->
7676
because 'Versions 3.15 and later of this artifact require Java 11.'
7777
}
7878
}
79+
implementation('org.eclipse.platform:org.eclipse.core.commands') {
80+
version { strictly '(,3.9.800)' }
81+
because 'Versions 3.10.0 and later of this artifact require Java 11.'
82+
}
7983
}
8084

8185
configurations {

0 commit comments

Comments
 (0)