Changeset 28290 in osm for applications/editors


Ignore:
Timestamp:
2012-04-14T13:11:51+02:00 (12 years ago)
Author:
stoecker
Message:

fix plugin build

Location:
applications/editors/josm/plugins
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/NanoLog

    • Property svn:ignore set to
      build
  • applications/editors/josm/plugins/build-common.xml

    r27983 r28290  
    3636    -->
    3737    <target name="compile" depends="init">
    38         <echo message="compiling sources for  ${plugin.jar} ... "/>
     38        <echo message="compiling sources for ${plugin.jar} ..."/>
    3939        <javac srcdir="src" classpath="${josm}" debug="true" destdir="${plugin.build.dir}">
    4040            <compilerarg value="-Xlint:deprecation"/>
  • applications/editors/josm/plugins/build.xml

    r28005 r28290  
    1515        <ant antfile="build.xml" target="dist" dir="colorscheme"/>
    1616        <ant antfile="build.xml" target="dist" dir="utilsplugin2"/>     
    17         <ant antfile="build.xml" target="dist" dir="conflation"/> <!-- Depends on utilsplugin2 -->
    1817        <ant antfile="build.xml" target="dist" dir="canvec_helper"/>
    1918        <ant antfile="build.xml" target="dist" dir="ColumbusCSV"/>
     
    4342        <ant antfile="build.xml" target="dist" dir="infomode"/>
    4443        <ant antfile="build.xml" target="dist" dir="irsrectify"/>
     44        <ant antfile="build.xml" target="dist" dir="jts"/>
    4545        <ant antfile="build.xml" target="dist" dir="junctionchecking"/>
    4646        <ant antfile="build.xml" target="dist" dir="lakewalker"/>
     
    9494        <ant antfile="build.xml" target="dist" dir="waypoint_search"/>
    9595        <ant antfile="build.xml" target="dist" dir="wayselector"/>
     96        <ant antfile="build.xml" target="dist" dir="wikipedia"/>
    9697        <ant antfile="build.xml" target="dist" dir="wms-turbo-challenge2"/>
    9798    </target>
     
    108109        <ant antfile="build.xml" target="clean" dir="ColumbusCSV"/>
    109110        <ant antfile="build.xml" target="clean" dir="CommandLine"/>
    110         <ant antfile="build.xml" target="clean" dir="conflation"/>
    111111        <ant antfile="build.xml" target="clean" dir="Create_grid_of_ways"/>
    112112        <ant antfile="build.xml" target="clean" dir="czechaddress"/>
     
    133133        <ant antfile="build.xml" target="clean" dir="infomode"/>
    134134        <ant antfile="build.xml" target="clean" dir="irsrectify"/>
     135        <ant antfile="build.xml" target="clean" dir="jts"/>
    135136        <ant antfile="build.xml" target="clean" dir="junctionchecking"/>
    136137        <ant antfile="build.xml" target="clean" dir="lakewalker"/>
     
    186187        <ant antfile="build.xml" target="clean" dir="waypoint_search"/>
    187188        <ant antfile="build.xml" target="clean" dir="wayselector"/>
     189        <ant antfile="build.xml" target="clean" dir="wikipedia"/>
    188190        <ant antfile="build.xml" target="clean" dir="wms-turbo-challenge2"/>
    189191    </target>
  • applications/editors/josm/plugins/canvec_helper

    • Property svn:ignore set to
      build
  • applications/editors/josm/plugins/jts

    • Property svn:ignore set to
      build
  • applications/editors/josm/plugins/mirrored_download/src/mirrored_download/MirroredDownloadAction.java

    r28174 r28290  
    4141
    4242    public MirroredDownloadAction() {
    43         super(tr("Download from OSM mirror..."), null, tr("Download map data from the OSM server."),
     43        super(tr("Download from OSM mirror..."), (String)null, tr("Download map data from the OSM server."),
    4444                Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT),
    4545                true, "mirroreddownload/download", true);
  • applications/editors/josm/plugins/mirrored_download/src/mirrored_download/UrlSelectionAction.java

    r28108 r28290  
    1616
    1717    public UrlSelectionAction() {
    18         super(tr("Select OSM mirror URL"), null, tr("Select OSM mirror URL to download from."),
     18        super(tr("Select OSM mirror URL"), (String)null, tr("Select OSM mirror URL to download from."),
    1919                null, true, "mirroreddownload/urlselection", true);
    2020        putValue("help", ht("/Action/SelectUrl"));
  • applications/editors/josm/plugins/native-password-manager/build.xml

    r27367 r28290  
    5454    -->
    5555    <target name="compile" depends="init">
    56         <echo message="compiling sources for  ${plugin.jar} ... "/>
     56        <echo message="compiling sources for ${plugin.jar} ..."/>
    5757        <javac srcdir="src" classpathref="classpath" debug="true" destdir="${plugin.build.dir}">
    5858            <compilerarg value="-Xlint:deprecation"/>
     
    105105        </jar>
    106106    </target>
    107 
    108107</project>
  • applications/editors/josm/plugins/reltoolbox/src/relcontext/RelContextDialog.java

    r27927 r28290  
    563563
    564564        public EnterRoleAction() {
    565             super(tr("Change role"), null, tr("Enter role for selected members"),
     565            super(tr("Change role"), (String)null, tr("Enter role for selected members"),
    566566                    Shortcut.registerShortcut("reltoolbox:changerole", tr("Relation Toolbox: {0}", tr("Enter role for selected members")),
    567567                    KeyEvent.VK_R, Shortcut.ALT_CTRL), false, "relcontext/enterrole", true);
  • applications/editors/josm/plugins/wikipedia

    • Property svn:ignore set to
      build
Note: See TracChangeset for help on using the changeset viewer.