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

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

make plugin depend on javafx plugin

File size: 1.8 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
18 <property name="plugin.canloadatruntime" value="true"/>
19
20 <!-- edit the properties of this plugin in the file `gradle.properties` -->
21 <property file="${basedir}/gradle.properties"/>
22
23 <property name="josm" location="../../core/dist/josm-custom.jar"/>
24 <property name="plugin.dist.dir" value="../../dist"/>
25
26 <!--** include targets that all plugins have in common **-->
27 <import file="../build-common.xml"/>
28
29 <fileset id="plugin.requires.jars" dir="${plugin.dist.dir}">
30 <include name="apache-commons.jar"/>
31 <include name="apache-http.jar"/>
32 <include name="utilsplugin2.jar"/>
33 <include name="openjfx.jar"/>
34 </fileset>
35
36 <target name="pre-compile" depends="fetch_dependencies">
37 <!-- include fetch_dependencies task -->
38 </target>
39
40 <target name="install-plugin" depends="clean, dist, install">
41 <echo>Installed Microsoft Streetside plugin</echo>
42 </target>
43
44 <target name="test-run" depends="install-plugin, runjosm">
45 </target>
46</project>
Note: See TracBrowser for help on using the repository browser.