We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e276e commit aa9fb0fCopy full SHA for aa9fb0f
build.gradle
@@ -66,6 +66,18 @@ subprojects { subproject ->
66
}
67
68
69
+ dependencies.constraints {
70
+ [
71
+ 'org.eclipse.platform:org.eclipse.core.resources',
72
+ 'org.eclipse.platform:org.eclipse.equinox.common',
73
+ ].forEach {
74
+ implementation(it) {
75
+ version { strictly '(,3.15)' }
76
+ because 'Versions 3.15 and later of this artifact require Java 11.'
77
+ }
78
79
80
+
81
configurations {
82
implementation {
83
// See https://github.com/wala/WALA/issues/823. This group was renamed to
0 commit comments