Skip to content

Commit aa9fb0f

Browse files
liblitmsridhar
authored andcommitted
Avoid Eclipse artifact versions that require Java 11+
1 parent 44e276e commit aa9fb0f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,18 @@ subprojects { subproject ->
6666
}
6767
}
6868

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+
6981
configurations {
7082
implementation {
7183
// See https://github.com/wala/WALA/issues/823. This group was renamed to

0 commit comments

Comments
 (0)