diff --git a/plugins/jts/build.xml b/plugins/jts/build.xml
index 74fc946c5..1ed015e05 100644
|
a
|
b
|
|
| 1 | 1 | <?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"> |
| 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 --> |
| … |
… |
|
| 17 | 17 | |
| 18 | 18 | <!-- ** include targets that all plugins have in common ** --> |
| 19 | 19 | <import file="../build-common.xml"/> |
| | 20 | |
| | 21 | <target name="pre-compile" depends="fetch_dependencies"> |
| | 22 | <!-- include fetch_dependencies task --> |
| | 23 | </target> |
| 20 | 24 | </project> |
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> |