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

Last change on this file since 34610 was 34610, checked in by donvip, 6 years ago

see #josm16682 - add openjfx jar to build path

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="MicrosoftStreetside" default="dist" basedir=".">
3
4 <!-- Configure these properties (replace "..." accordingly).
5 See https://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
6 -->
7 <!-- enter the SVN commit message -->
8 <property name="commit.message" value="Commit message" />
9 <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
10 <property name="plugin.main.version" value="14183" />
11
12 <property name="plugin.author" value="renerr18" />
13 <property name="plugin.class" value="org.openstreetmap.josm.plugins.streetside.StreetsidePlugin" />
14 <property name="plugin.description" value="View high resolution Microsoft Streetside 360 degree imagery in JOSM." />
15 <property name="plugin.icon" value="images/streetside-logo-white.png" />
16 <property name="plugin.link" value="https://github.com/spatialdev/MicrosoftStreetside"/>
17 <property name="plugin.requires" value="apache-commons;apache-http;openjfx"/>
18
19 <property name="plugin.canloadatruntime" value="true"/>
20
21 <!-- edit the properties of this plugin in the file `gradle.properties` -->
22 <property file="${basedir}/gradle.properties"/>
23
24 <property name="josm" location="../../core/dist/josm-custom.jar"/>
25 <property name="plugin.dist.dir" value="../../dist"/>
26
27 <!--** include targets that all plugins have in common **-->
28 <import file="../build-common.xml"/>
29
30 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
31 <include name="apache-commons.jar"/>
32 <include name="apache-http.jar"/>
33 <include name="utilsplugin2.jar"/>
34 <include name="openjfx.jar"/>
35 </fileset>
36
37 <target name="pre-compile" depends="fetch_dependencies">
38 <!-- include fetch_dependencies task -->
39 </target>
40
41 <target name="install-plugin" depends="clean, dist, install">
42 <echo>Installed Microsoft Streetside plugin</echo>
43 </target>
44
45 <target name="test-run" depends="install-plugin, runjosm">
46 </target>
47</project>
Note: See TracBrowser for help on using the repository browser.