File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -217,15 +217,19 @@ local common_json = import "../common.json";
217
217
}
218
218
},
219
219
220
- local code_tools = {
220
+ # ProGuard does not yet run on JDK 25
221
+ proguard: {
221
222
downloads+: if 'jdk_version' in self && self .jdk_version > 21 then {
222
- TOOLS_JAVA_HOME: jdks_data['oraclejdk21' ],
223
+ TOOLS_JAVA_HOME: jdks_data['oraclejdk24' ],
224
+ IGV_JAVA_HOME: jdks_data['oraclejdk21' ],
223
225
} else {},
224
226
},
225
- # GR-46676: ProGuard does not yet run on JDK 22
226
- proguard: code_tools,
227
227
# GR-49566: SpotBugs does not yet run on JDK 22
228
- spotbugs: code_tools,
228
+ spotbugs: {
229
+ downloads+: if 'jdk_version' in self && self .jdk_version > 21 then {
230
+ TOOLS_JAVA_HOME: jdks_data['oraclejdk21' ],
231
+ } else {},
232
+ },
229
233
230
234
sulong:: self .cmake + {
231
235
packages+: if self .os == "windows" then {
You can’t perform that action at this time.
0 commit comments