Changeset 21422 in osm


Ignore:
Timestamp:
2010-05-23T19:03:01+02:00 (14 years ago)
Author:
jttt
Message:

Make it possible to debug osmarender plugin in eclipse

Location:
applications/editors/josm/plugins/osmarender
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/.project

    r1438 r21422  
    66        </projects>
    77        <buildSpec>
     8                <buildCommand>
     9                        <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
     10                        <triggers>full,incremental,</triggers>
     11                        <arguments>
     12                                <dictionary>
     13                                        <key>LaunchConfigHandle</key>
     14                                        <value>&lt;project&gt;/.externalToolBuilders/copy_styles.launch</value>
     15                                </dictionary>
     16                        </arguments>
     17                </buildCommand>
    818                <buildCommand>
    919                        <name>org.eclipse.jdt.core.javabuilder</name>
  • applications/editors/josm/plugins/osmarender/build.xml

    r21252 r21422  
    1717**
    1818** To build against the core in ../../core, create a correct manifest and deploy to
    19 ** SVN, 
     19** SVN,
    2020**    set the properties commit.message and plugin.main.version
    2121** and run
     
    4848                </javac>
    4949        </target>
    50         <target name="dist" depends="compile,revision">
     50        <target name="copy-styles">
    5151                <copy todir="${plugin.build.dir}" file="${xslt}/osmarender.xsl" />
    5252                <copy tofile="${plugin.build.dir}/osm-map-features.xml" file="${stylesheets}/osm-map-features-z17.xml" />
     53        </target>
     54        <target name="dist" depends="compile,revision,copy-styles">
    5355                <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
    5456                        <manifest>
     
    9698
    9799        <!--
    98                  ************************** Publishing the plugin *********************************** 
     100                 ************************** Publishing the plugin ***********************************
    99101                -->
    100102        <!--
    101                 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 
     103                ** extracts the JOSM release for the JOSM version in ../core and saves it in the
    102104                ** property ${coreversion.info.entry.revision}
    103105                **
     
    148150
    149151        <!--
    150                 ** commits the plugin.jar 
     152                ** commits the plugin.jar
    151153                -->
    152154        <target name="commit-dist">
    153155                <echo>
    154156        ***** Properties of published ${plugin.jar} *****
    155         Commit message    : '${commit.message}'                                 
     157        Commit message    : '${commit.message}'
    156158        Plugin-Mainversion: ${plugin.main.version}
    157159        JOSM build version: ${coreversion.info.entry.revision}
    158160        Plugin-Version    : ${version.entry.commit.revision}
    159         ***** / Properties of published ${plugin.jar} *****                                     
    160                                                
     161        ***** / Properties of published ${plugin.jar} *****
     162
    161163        Now commiting ${plugin.jar} ...
    162164        </echo>
Note: See TracChangeset for help on using the changeset viewer.