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
7 changes: 7 additions & 0 deletions core/ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@
<artifactId>javafx-web</artifactId>
<version>${openjfx.version}</version>
</dependency>
<!-- netscape.javascript for javafx.web; previously provided by the JDK's
jdk.jsobject module, which was removed in JDK 26. -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>jdk-jsobject</artifactId>
<version>${jsobject.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions dependencies/phoebus-target/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@
<artifactId>javafx-web</artifactId>
<version>${openjfx.version}</version>
</dependency>
<!-- netscape.javascript for javafx.web; previously provided by the JDK's
jdk.jsobject module, which was removed in JDK 26. -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>jdk-jsobject</artifactId>
<version>${jsobject.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
<epics.util.version>1.0.8</epics.util.version>
<vtype.version>1.0.8</vtype.version>
<openjfx.version>21.0.7</openjfx.version>
<!-- Supplies netscape.javascript (used by javafx.web's WebView), which lived
in the JDK's jdk.jsobject module until that module was removed in JDK 26.
Versioned independently of openjfx because the standalone artifact only
exists from 25 onwards. -->
<jsobject.version>26.0.1</jsobject.version>
<jackson.version>2.12.3</jackson.version>
<batik.version>1.17</batik.version>
<mockito.version>2.23.4</mockito.version>
Expand Down
Loading