Changeset 36486 in osm
- Timestamp:
- 2026-02-12T22:20:13+01:00 (5 days ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
-
build-common.xml (modified) (4 diffs)
-
javafx/pom.xml (modified) (1 diff)
-
javafx/src/org/openstreetmap/josm/plugins/javafx/gui/JavaFxWrapper.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/build-common.xml
r36483 r36486 113 113 <!-- to be overridden by plugins that need to perform additional tasks before compiling --> 114 114 </target> 115 <target name=" compile" depends="init, pre-compile, resolve-tools" unless="skip-compile">115 <target name="plugin-classpath-actual"> 116 116 <condition property="plugin.classpath.actual.defined"> 117 117 <isreference refid="plugin.classpath.actual" type="path"/> … … 120 120 <path refid="plugin.classpath"/> 121 121 </path> 122 </target> 123 <target name="compile" depends="init, pre-compile, resolve-tools, plugin-classpath-actual" unless="skip-compile"> 122 124 <echo message="compiling sources for ${plugin.jar} ..."/> 123 125 <path id="jdk.boot.classpath"> … … 293 295 <!-- to be overridden by plugins that need to perform additional tasks before generating javadoc --> 294 296 </target> 295 <target name="javadoc" depends="pre-javadoc,pre-compile" unless="skip-javadoc"> 297 <target name="javadoc" depends="pre-javadoc,pre-compile,plugin-classpath-actual" unless="skip-javadoc"> 296 298 <mkdir dir="${plugin.doc.dir}"/> 297 299 <javadoc destdir="${plugin.doc.dir}" … … 305 307 <classpath refid="plugin.classpath" unless:set="plugin.classpath.dependencies"/> 306 308 <classpath refid="plugin.classpath.dependencies" if:set="plugin.classpath.dependencies"/> 309 <classpath refid="plugin.classpath.actual"/> 307 310 <sourcepath> 308 311 <pathelement path="${plugin.src.dir}" /> -
applications/editors/josm/plugins/javafx/pom.xml
r36483 r36486 22 22 <plugin.stage>5</plugin.stage> 23 23 <plugin.minimum.java.version>17</plugin.minimum.java.version> 24 <javafx.version>21.0. 2</javafx.version>24 <javafx.version>21.0.10</javafx.version> 25 25 </properties> 26 26 <!-- These dependencies should be installed on the host machine - our installers bundle them --> -
applications/editors/josm/plugins/javafx/src/org/openstreetmap/josm/plugins/javafx/gui/JavaFxWrapper.java
r35805 r36486 30 30 private static class UncaughtExceptionHandler implements Thread.UncaughtExceptionHandler { 31 31 private final Thread.UncaughtExceptionHandler currentHandler; 32 publicUncaughtExceptionHandler() {32 UncaughtExceptionHandler() { 33 33 currentHandler = Thread.currentThread().getUncaughtExceptionHandler(); 34 34 Thread.currentThread().setUncaughtExceptionHandler(this); 35 35 } 36 36 37 @Override 37 38 public void uncaughtException(Thread t, Throwable e) {
Note:
See TracChangeset
for help on using the changeset viewer.
