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

Last change on this file since 36433 was 36415, checked in by stoecker, 2 months ago

some cleanup

  • Property svn:mime-type set to text/xml
File size: 2.1 KB
RevLine 
[34317]1<?xml version="1.0" encoding="utf-8"?>
[36034]2<project xmlns:if="ant:if" xmlns:ivy="antlib:org.apache.ivy.ant" name="MicrosoftStreetside" default="dist" basedir=".">
3 <!-- Configure these properties (replace "..." accordingly).
[34710]4 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
5 -->
[36034]6 <!-- enter the SVN commit message -->
7 <property name="commit.message" value="Commit message"/>
[36378]8 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
9 <property name="plugin.main.version" value="19044"/>
10 <!-- Configure these properties (replace "..." accordingly).
[36376]11 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
12 -->
[36378]13 <property name="plugin.author" value="Microsoft"/>
14 <property name="plugin.class" value="org.openstreetmap.josm.plugins.streetside.StreetsidePlugin"/>
15 <property name="plugin.description" value="Allows the user to work with pictures hosted at Microsoft Streetside"/>
16 <property name="plugin.icon" value="images/streetside-logo.svg"/>
17 <property name="plugin.link" value="https://josm.openstreetmap.de/browser/osm/applications/editors/josm/plugins/MicrosoftStreetside"/>
18 <!--<property name="plugin.early" value="..."/>-->
19 <!--<property name="plugin.requires" value="..."/>-->
20 <!--<property name="plugin.stage" value="..."/>-->
21 <property name="plugin.canloadatruntime" value="true"/>
22 <property name="plugin.minimum.java.version" value="21"/>
23 <property name="plugin.requires" value="apache-commons;javafx"/>
[36034]24 <property name="josm" location="../../core/dist/josm-custom.jar"/>
25 <property name="plugin.dist.dir" value="../../dist"/>
[36228]26 <property name="java.lang.version" value="21"/>
[36034]27 <!--** include targets that all plugins have in common **-->
28 <import file="../build-common.xml"/>
29 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
30 <include name="apache-commons.jar"/>
31 <include name="javafx-osx.jar" if:set="isMac"/>
32 <include name="javafx-unixoid.jar" if:set="isUnix"/>
33 <include name="javafx-windows.jar" if:set="isWindows"/>
34 </fileset>
35 <target name="pre-compile" depends="fetch_dependencies">
36 </target>
[34317]37</project>
Note: See TracBrowser for help on using the repository browser.