source: osm/applications/editors/josm/plugins/MicrosoftStreetside/build.xml@ 36354

Last change on this file since 36354 was 36348, checked in by taylor.smock, 3 months ago

Drop most ivy files

This is mostly to ensure there is one place for dependency updates to occur, not
two.

lwjgl and geotools did not have their ivy files dropped, since there was a diff
between ivy and maven dependency builds. This is most likely due to dependency
exclusions. The geotools pom.xml now has all the exclusions from the ivy.xml file
now.

jts also had a diff between ivy and maven dependency builds, but the missing
files were test files (specifically, *Test.class) and test related files.

This additionally bumps the minimum JOSM version for everything that had an
ivy.xml file to r19044 for rebuild purposes (r19044 is Java 11+ only).

File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project xmlns:if="ant:if" xmlns:ivy="antlib:org.apache.ivy.ant" name="MicrosoftStreetside" default="dist" basedir=".">
3 <!-- Configure these properties (replace "..." accordingly).
4 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
5 -->
6 <!-- enter the SVN commit message -->
7 <property name="commit.message" value="Commit message"/>
8 <!-- edit the properties of this plugin in the file `gradle.properties` -->
9 <property file="${basedir}/gradle.properties"/>
10 <property name="josm" location="../../core/dist/josm-custom.jar"/>
11 <property name="plugin.dist.dir" value="../../dist"/>
12 <property name="java.lang.version" value="21"/>
13 <!--** include targets that all plugins have in common **-->
14 <import file="../build-common.xml"/>
15 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
16 <include name="apache-commons.jar"/>
17 <include name="javafx-osx.jar" if:set="isMac"/>
18 <include name="javafx-unixoid.jar" if:set="isUnix"/>
19 <include name="javafx-windows.jar" if:set="isWindows"/>
20 </fileset>
21 <target name="pre-compile" depends="fetch_dependencies">
22 </target>
23</project>
Note: See TracBrowser for help on using the repository browser.