Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utils/IdealGraphVisualizer/Filter/pom.xml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/IdealGraphVisualizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 8 additions & 4 deletions src/utils/IdealGraphVisualizer/pom.xml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -58,6 +58,9 @@
<version>${mvncompilerplugin.version}</version>
<configuration>
<release>17</release>
<compilerArgs>
<arg>-proc:full</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
Expand All @@ -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>
Expand Down Expand Up @@ -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>
Expand Down