Changeset 34710 in osm for applications/editors/josm/plugins
- Timestamp:
- 2018-10-30T13:56:49+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/MicrosoftStreetside/build.xml
r34708 r34710 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <project name="MicrosoftStreetside" default="dist" basedir="." >2 <project name="MicrosoftStreetside" default="dist" basedir="." xmlns:if="ant:if"> 3 3 4 5 6 7 8 9 10 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 11 12 13 14 15 16 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 17 18 18 <property name="plugin.canloadatruntime" value="true"/> 19 19 20 21 20 <!-- edit the properties of this plugin in the file `gradle.properties` --> 21 <property file="${basedir}/gradle.properties"/> 22 22 23 24 23 <property name="josm" location="../../core/dist/josm-custom.jar"/> 24 <property name="plugin.dist.dir" value="../../dist"/> 25 25 26 27 26 <!--** include targets that all plugins have in common **--> 27 <import file="../build-common.xml"/> 28 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> 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> 35 37 36 37 38 38 <target name="pre-compile" depends="fetch_dependencies"> 39 <!-- include fetch_dependencies task --> 40 </target> 39 41 40 41 42 42 <target name="install-plugin" depends="clean, dist, install"> 43 <echo>Installed Microsoft Streetside plugin</echo> 44 </target> 43 45 44 45 46 <target name="test-run" depends="install-plugin, runjosm"> 47 </target> 46 48 </project>
Note:
See TracChangeset
for help on using the changeset viewer.