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

Last change on this file since 36118 was 36034, checked in by taylor.smock, 2 years ago

Dependency updates

apache-commons:

  • zstd-jni: 1.5.2-3 -> 1.5.2-5
  • commons-compress: 1.21 -> 1.22
  • commons-text: 1.9 -> 1.10.0

flatlaf: 1.6.1 -> 2.6
javafx: 16 -> 19
log4j: 2.18.0 -> 2.19.0

MicrosoftStreetside:

  • Enable builds on systems without JavaFX
  • Remove dependencies that exist in other plugins
    • jackson-core


pbf: 3.13.0 -> 3.20.3
jackson: 2.13.3 -> 2.14.0
lwjgl: joml 1.10.3 -> 1.10.5

File size: 2.1 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 <!--** include targets that all plugins have in common **-->
13 <import file="../build-common.xml"/>
14 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
15 <include name="apache-commons.jar"/>
16 <include name="apache-http.jar"/>
17 <include name="jackson.jar"/>
18 <include name="javafx-osx.jar" if:set="isMac"/>
19 <include name="javafx-unixoid.jar" if:set="isUnix"/>
20 <include name="javafx-windows.jar" if:set="isWindows"/>
21 <include name="log4j.jar"/>
22 <include name="utilsplugin2.jar"/>
23 </fileset>
24 <target name="pre-compile" depends="fetch_dependencies">
25 <!-- include fetch_dependencies task -->
26 <ivy:retrieve conf="provided,default"/>
27 <!--<ivy:cachepath pathid="compile.path" conf="default,provided"/>-->
28 </target>
29 <target name="build-jar">
30 <ivy:resolve/>
31 <ivy:cachefileset setid="ivy.default.path" conf="default"/>
32 <jar destfile="${basedir}/dependencies.jar" duplicate="preserve" level="0">
33 <zipgroupfileset refid="ivy.default.path"/>
34 </jar>
35 <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}" manifest="${manifest}" manifestencoding="UTF-8" duplicate="preserve" level="9" excludes="${basedir}/dependencies.jar">
36 <zipfileset src="${basedir}/dependencies.jar" excludes="META-INF/maven/* META-INF/DEPENDENCIES META-INF/LICENSE META-INF/NOTICE META-INF/*.RSA META-INF/*.SF module-info.class"/>
37 </jar>
38 <delete file="${basedir}/dependencies.jar"/>
39 </target>
40</project>
Note: See TracBrowser for help on using the repository browser.