Changeset 29645 in osm


Ignore:
Timestamp:
2013-06-10T01:05:42+02:00 (11 years ago)
Author:
donvip
Message:

[josm_merge-overlap] cleanup project

Location:
applications/editors/josm/plugins/merge-overlap
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/merge-overlap

    • Property svn:ignore
      •  

        old new  
        11build
         2bin
  • applications/editors/josm/plugins/merge-overlap/.classpath

    r26705 r29645  
    22<classpath>
    33        <classpathentry kind="src" path="src"/>
    4         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-6-openjdk"/>
    5         <classpathentry kind="lib" path="/usr/share/josm/josm.jar" sourcepath="/JOSM"/>
     4        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
    65        <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/>
    76        <classpathentry kind="output" path="bin"/>
  • applications/editors/josm/plugins/merge-overlap/.project

    r26575 r29645  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<projectDescription>
    3         <name>merge-overlap</name>
     3        <name>JOSM-merge-overlap</name>
    44        <comment></comment>
    55        <projects>
  • applications/editors/josm/plugins/merge-overlap/.settings/org.eclipse.jdt.core.prefs

    r26575 r29645  
    1 #Thu Nov 05 21:57:09 CET 2009
    21eclipse.preferences.version=1
    32org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
    4 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
     3org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
    54org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
    6 org.eclipse.jdt.core.compiler.compliance=1.5
     5org.eclipse.jdt.core.compiler.compliance=1.6
    76org.eclipse.jdt.core.compiler.debug.lineNumber=generate
    87org.eclipse.jdt.core.compiler.debug.localVariable=generate
     
    109org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
    1110org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
    12 org.eclipse.jdt.core.compiler.source=1.5
     11org.eclipse.jdt.core.compiler.source=1.6
  • applications/editors/josm/plugins/merge-overlap/build.xml

    r29435 r29645  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** This is the build file for the merge-overlap plugin.
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** see README.template
    8 **
    9 ** Usage
    10 ** =====
    11 ** To build it run
    12 **
    13 **    > ant  dist
    14 **
    15 ** To install the generated plugin locally (in you default plugin directory) run
    16 **
    17 **    > ant  install
    18 **
    19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration
    20 ** dialog. You have to check it in first.
    21 **
    22 ** Use the ant target 'publish' to check in the plugin and make it available to other
    23 ** JOSM users:
    24 **    set the properties commit.message and plugin.main.version
    25 ** and run
    26 **    > ant  publish
    27 **
    28 **
    29 -->
    302<project name="merge-overlap" default="dist" basedir=".">
    313    <!-- enter the SVN commit message -->
     
    335    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    346    <property name="plugin.main.version" value="4980"/>
     7   
     8    <!-- Configure these properties (replace "..." accordingly).
     9         See http://josm.openstreetmap.de/wiki/DevelopersGuide/DevelopingPlugins
     10    -->
     11    <property name="plugin.author" value="Stéphane Brunner"/>
     12    <property name="plugin.class" value="mergeoverlap.MergeOverlapPlugin"/>
     13    <property name="plugin.description" value="Merge overlapping part of ways."/>
     14    <property name="plugin.icon" value="images/merge_overlap.png"/>
    3515
     16    <!-- ** include targets that all plugins have in common ** -->
    3617    <import file="../build-common.xml"/>
    37 
    38     <target name="dist" depends="compile,revision">
    39         <echo message="creating ${ant.project.name}.jar ... "/>
    40         <copy todir="${plugin.build.dir}/images">
    41             <fileset dir="images"/>
    42         </copy>
    43         <copy todir="${plugin.build.dir}/data">
    44             <fileset dir="data"/>
    45         </copy>
    46             <copy todir="${plugin.build.dir}">
    47                 <fileset dir=".">
    48                     <include name="README"/>
    49                     <include name="LICENSE"/>
    50                 </fileset>
    51             </copy>
    52         <jar destfile="${plugin.jar}" basedir="${plugin.build.dir}">
    53             <manifest>
    54                 <attribute name="Author" value="Stéphane Brunner"/>
    55                 <attribute name="Plugin-Class" value="mergeoverlap.MergeOverlapPlugin"/>
    56                 <attribute name="Plugin-Description" value="Merge overlapping part of ways."/>
    57                 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/>
    58                 <attribute name="Plugin-Icon" value="images/merge_overlap.png"/>
    59                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    60                 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    61             </manifest>
    62         </jar>
    63     </target>
    6418</project>
Note: See TracChangeset for help on using the changeset viewer.