diff --git a/plugins/ejml/build.xml b/plugins/ejml/build.xml
index e8661fc82..c236cfd0a 100644
|
a
|
b
|
|
| 1 | 1 | <?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"> |
| 3 | 3 | <!-- enter the SVN commit message --> |
| 4 | 4 | <property name="commit.message" value="Commit message"/> |
| 5 | 5 | <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> |
| … |
… |
|
| 15 | 15 | <!-- ** include targets that all plugins have in common ** --> |
| 16 | 16 | <import file="../build-common.xml"/> |
| 17 | 17 | |
| | 18 | <target name="pre-compile" depends="fetch_dependencies"> |
| | 19 | <!-- include fetch_dependencies task --> |
| | 20 | </target> |
| | 21 | |
| 18 | 22 | </project> |
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> |