8368780: IGV: Upgrade to Netbeans Platform 27

Reviewed-by: rcastanedalo, chagedorn
This commit is contained in:
Antón Seoane Ampudia 2025-10-08 08:58:58 +00:00 committed by Roberto Castañeda Lozano
parent d27649fe22
commit f58e17fd27
3 changed files with 11 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021, 2025, Oracle and/or its affiliates. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
@ -91,7 +91,7 @@
<dependency>
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
<version>15.3</version>
<version>${nashorn.version}</version>
</dependency>
</dependencies>
<build>

View File

@ -8,7 +8,7 @@ tool itself is fairly general with only a few modules that contain C2 specific
elements.
The tool is built on top of the NetBeans Platform, and requires a JDK version
between 17 and 21 (the JDKs supported by the current NetBeans Platform).
between 17 and 25 (the JDKs supported by the current NetBeans Platform).
# Building and Running

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2021, 2025, Oracle and/or its affiliates. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
@ -58,6 +58,9 @@
<version>${mvncompilerplugin.version}</version>
<configuration>
<release>17</release>
<compilerArgs>
<arg>-proc:full</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
@ -78,8 +81,8 @@
<configuration>
<rules>
<requireJavaVersion>
<version>[17,22)</version>
<message>IGV requires a JDK version between 17 and 21</message>
<version>[17,26)</version>
<message>IGV requires a JDK version between 17 and 25</message>
</requireJavaVersion>
</rules>
</configuration>
@ -109,7 +112,8 @@
<module>View</module>
</modules>
<properties>
<netbeans.version>RELEASE200</netbeans.version>
<netbeans.version>RELEASE270</netbeans.version>
<nashorn.version>15.7</nashorn.version>
<swinglayouts.version>1.0.2</swinglayouts.version>
<nbmmvnplugin.version>3.7</nbmmvnplugin.version>
<mvncompilerplugin.version>3.12.1</mvncompilerplugin.version>