diff --git a/plugins/build-common.xml b/plugins/build-common.xml
index 818a229fc..b076e0f1f 100644
|
a
|
b
|
|
| 764 | 764 | <target name="ivy-checkdepsupdate" description="Display dependency updates on the console" depends="fetch_dependencies"> |
| 765 | 765 | <ivy:checkdepsupdate/> |
| 766 | 766 | </target> |
| | 767 | <target name="dependency-tree" description="Displays Ivy dependency tree" depends="fetch_dependencies"> |
| | 768 | <ivy:dependencytree/> |
| | 769 | </target> |
| 767 | 770 | </project> |
diff --git a/plugins/geotools/build.xml b/plugins/geotools/build.xml
index dd994dd03..cd6799726 100644
|
a
|
b
|
|
| 1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | | <project name="geotools" default="dist" basedir="."> |
| | 2 | <project name="geotools" 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 --> |
| … |
… |
|
| 10 | 10 | <property name="plugin.description" value="Provides parts of the GeoTools library for other JOSM plugins. Not meant to be installed directly by users, but rather as a dependency for other plugins."/> |
| 11 | 11 | <property name="plugin.icon" value="images/compass.png"/> |
| 12 | 12 | <property name="plugin.canloadatruntime" value="true"/> |
| 13 | | <property name="plugin.requires" value="jts;ejml;apache-commons"/> |
| | 13 | <property name="plugin.requires" value="ejml;apache-commons;jaxb;jts"/> |
| 14 | 14 | <property name="plugin.stage" value="20"/> |
| 15 | 15 | |
| 16 | 16 | <!-- ** include targets that all plugins have in common ** --> |
| 17 | 17 | <import file="../build-common.xml"/> |
| 18 | 18 | |
| | 19 | <target name="pre-compile" depends="fetch_dependencies"> |
| | 20 | <!-- include fetch_dependencies task --> |
| | 21 | </target> |
| | 22 | |
| 19 | 23 | <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}"> |
| 20 | | <include name="jts.jar"/> |
| 21 | | <include name="ejml.jar"/> |
| 22 | 24 | <include name="apache-commons.jar"/> |
| | 25 | <include name="ejml.jar"/> |
| | 26 | <include name="jaxb.jar"/> |
| | 27 | <include name="jts.jar"/> |
| 23 | 28 | </fileset> |
| 24 | 29 | |
| 25 | 30 | <target name="merge-geotools-services"> |
diff --git a/plugins/log4j/ivy.xml b/plugins/log4j/ivy.xml
index 1fdca823d..2d7f0854c 100644
|
a
|
b
|
|
| 3 | 3 | <ivy-module version="2.0"> |
| 4 | 4 | <info organisation="org.openstreetmap.josm.plugins" module="log4j"/> |
| 5 | 5 | <dependencies> |
| 6 | | <dependency org="org.apache.logging.log4j" name="log4j-api" rev="2.17.0" conf="default->default"/> |
| 7 | | <dependency org="org.apache.logging.log4j" name="log4j-1.2-api" rev="2.17.0" conf="default->default"/> |
| 8 | | <dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.17.0" conf="default->default"/> |
| | 6 | <dependency org="org.apache.logging.log4j" name="log4j-api" rev="2.17.1" conf="default->default"/> |
| | 7 | <dependency org="org.apache.logging.log4j" name="log4j-1.2-api" rev="2.17.1" conf="default->default"/> |
| | 8 | <dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.17.1" conf="default->default"/> |
| 9 | 9 | </dependencies> |
| 10 | 10 | </ivy-module> |