Ignore:
Timestamp:
2024-08-21T19:57:34+02:00 (6 months ago)
Author:
taylor.smock
Message:

Use pom.xml for dependencies when ivy.xml is not available

This removes ivy.xml from javafx and converts rasterfilters to use maven for
dependency management instead of jars in source control. In addition
rasterfilters dependencies were upgraded to the latest versions.

javafx now requires Java 17 since OpenJFX 21 requires Java 17+.

opendata was upgraded to use jdom2 (see
https://github.com/JOSM/josm-plugins/security/dependabot/2)

Location:
applications/editors/josm/plugins/javafx
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/javafx/build.xml

    r35805 r36315  
    1212    <property name="plugin.class" value="org.openstreetmap.josm.plugins.javafx.JavaFxPlugin"/>
    1313    <property name="plugin.description" value="Provides additional OpenJFX (JavaFX) features such as MP3 audio playback."/>
    14     <!--<property name="plugin.minimum.java.version" value="10"/>-->
     14    <property name="plugin.minimum.java.version" value="17"/>
    1515    <property name="plugin.provides" value="javafx"/>
    1616    <!--<property name="plugin.icon" value="..."/>-->
  • applications/editors/josm/plugins/javafx/pom.xml

    r36313 r36315  
    2121        <plugin.early>true</plugin.early>
    2222        <plugin.stage>5</plugin.stage>
     23        <plugin.minimum.java.version>17</plugin.minimum.java.version>
    2324        <javafx.version>21.0.2</javafx.version>
    2425    </properties>
Note: See TracChangeset for help on using the changeset viewer.