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

Last change on this file since 36380 was 36378, checked in by taylor.smock, 11 days ago

Make certain all plugins can be compiled with maven

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 <!-- 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).
11 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
12 -->
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"/>
24 <property name="josm" location="../../core/dist/josm-custom.jar"/>
25 <property name="plugin.dist.dir" value="../../dist"/>
26 <property name="java.lang.version" value="21"/>
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>
37</project>
Note: See TracBrowser for help on using the repository browser.