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

Last change on this file since 34745 was 34745, checked in by stoecker, 6 years ago

disable dead link

File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<project name="MicrosoftStreetside" default="dist" basedir="." xmlns:if="ant:if">
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="javafx-windows.jar" if:set="isWindows"/>
34 <include name="javafx-unixoid.jar" if:set="isUnix"/>
35 <include name="javafx-osx.jar" if:set="isMac"/>
36 </fileset>
37
38 <target name="pre-compile" depends="fetch_dependencies">
39 <!-- include fetch_dependencies task -->
40 </target>
41
42 <target name="install-plugin" depends="clean, dist, install">
43 <echo>Installed Microsoft Streetside plugin</echo>
44 </target>
45
46 <target name="test-run" depends="install-plugin, runjosm">
47 </target>
48</project>
Note: See TracBrowser for help on using the repository browser.