Ignore:
Timestamp:
2024-08-21T19:57:34+02:00 (3 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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/pom.xml

    r36282 r36315  
    7171            <scope>provided</scope>
    7272        </dependency>
    73         <!-- Needed to compile jopendocument, provided by geotools later -->
     73        <!-- Needed to compile jopendocument, not currently provided by geotools -->
    7474        <dependency>
    7575            <groupId>org.jdom</groupId>
    76             <artifactId>jdom</artifactId>
    77             <version>1.1.3</version>
    78             <scope>provided</scope>
     76            <artifactId>jdom2</artifactId>
     77            <version>2.0.6.1</version>
     78            <scope>compile</scope>
    7979        </dependency>
    8080    </dependencies>
Note: See TracChangeset for help on using the changeset viewer.