Ticket #21670: 21670.patch

File 21670.patch, 2.8 KB (added by taylor.smock, 4 years ago)
  • plugins/jts/build.xml

    diff --git a/plugins/jts/build.xml b/plugins/jts/build.xml
    index 74fc946c5..1ed015e05 100644
    a b  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <project name="jts" default="dist" basedir=".">
     2<project name="jts" default="dist" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant">
    33    <!-- enter the SVN commit message -->
    44    <property name="commit.message" value="Commit message"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
     
    1717
    1818    <!-- ** include targets that all plugins have in common ** -->
    1919    <import file="../build-common.xml"/>
     20
     21    <target name="pre-compile" depends="fetch_dependencies">
     22        <!-- include fetch_dependencies task -->
     23    </target>
    2024</project>
  • new file plugins/jts/ivy.xml

    diff --git a/plugins/jts/ivy.xml b/plugins/jts/ivy.xml
    new file mode 100644
    index 000000000..5a5a8382f
    - +  
     1<?xml version="1.0" encoding="utf-8"?>
     2<!-- License: GPL. For details, see LICENSE file. -->
     3<ivy-module version="2.0">
     4    <info organisation="org.openstreetmap.josm.plugins" module="jts"/>
     5    <dependencies>
     6        <dependency org="org.locationtech.jts" name="jts-core" rev="1.16.1" />
     7        <dependency org="org.locationtech.jts.io" name="jts-io-common" rev="1.16.1" />
     8        <!-- jts-io-common has junit as a test dependency -->
     9        <exclude org="junit" />
     10    </dependencies>
     11</ivy-module>