Ticket #21669: 21669.patch

File 21669.patch, 7.1 KB (added by taylor.smock, 4 years ago)
  • plugins/ejml/build.xml

    diff --git a/plugins/ejml/build.xml b/plugins/ejml/build.xml
    index e8661fc82..c236cfd0a 100644
    a b  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <project name="ejml" default="dist" basedir=".">
     2<project name="ejml" 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 -->
     
    1515    <!-- ** include targets that all plugins have in common ** -->
    1616    <import file="../build-common.xml"/>
    1717
     18    <target name="pre-compile" depends="fetch_dependencies">
     19        <!-- include fetch_dependencies task -->
     20    </target>
     21
    1822</project>
  • new file plugins/ejml/ivy.xml

    diff --git a/plugins/ejml/ivy.xml b/plugins/ejml/ivy.xml
    new file mode 100644
    index 000000000..53a3aa167
    - +  
     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="ejml"/>
     5    <dependencies>
     6        <!-- We included everything in 0.34, including experimental -->
     7        <dependency org="org.ejml" name="ejml-all" rev="0.34"/>
     8        <dependency org="org.ejml" name="ejml-experimental" rev="0.34"/>
     9        <!-- junit is included as a test dependency in 0.34. It does not appear in 0.41, so can be removed on ejml update. -->
     10        <exclude org="junit"/>
     11    </dependencies>
     12</ivy-module>