Ignore:
Timestamp:
2018-10-30T13:56:49+01:00 (6 years ago)
Author:
donvip
Message:

see #josm16912 - fix classpath

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/MicrosoftStreetside/build.xml

    r34708 r34710  
    11<?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">
    33
    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" />
     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" />
    1111
    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"/>
     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"/>
    1717
    18         <property name="plugin.canloadatruntime" value="true"/>
     18    <property name="plugin.canloadatruntime" value="true"/>
    1919
    20         <!-- edit the properties of this plugin in the file `gradle.properties` -->
    21         <property file="${basedir}/gradle.properties"/>
     20    <!-- edit the properties of this plugin in the file `gradle.properties` -->
     21    <property file="${basedir}/gradle.properties"/>
    2222
    23         <property name="josm" location="../../core/dist/josm-custom.jar"/>
    24         <property name="plugin.dist.dir" value="../../dist"/>
     23    <property name="josm" location="../../core/dist/josm-custom.jar"/>
     24    <property name="plugin.dist.dir" value="../../dist"/>
    2525
    26         <!--** include targets that all plugins have in common **-->
    27         <import file="../build-common.xml"/>
     26    <!--** include targets that all plugins have in common **-->
     27    <import file="../build-common.xml"/>
    2828
    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>
    3537
    36         <target name="pre-compile" depends="fetch_dependencies">
    37                 <!-- include fetch_dependencies task -->
    38         </target>
     38    <target name="pre-compile" depends="fetch_dependencies">
     39        <!-- include fetch_dependencies task -->
     40    </target>
    3941
    40         <target name="install-plugin" depends="clean, dist, install">
    41                 <echo>Installed Microsoft Streetside plugin</echo>
    42         </target>
     42    <target name="install-plugin" depends="clean, dist, install">
     43        <echo>Installed Microsoft Streetside plugin</echo>
     44    </target>
    4345
    44         <target name="test-run" depends="install-plugin, runjosm">
    45         </target>
     46    <target name="test-run" depends="install-plugin, runjosm">
     47    </target>
    4648</project>
Note: See TracChangeset for help on using the changeset viewer.