Ignore:
Timestamp:
2007-08-07T23:46:08+02:00 (17 years ago)
Author:
imi
Message:

fixed build.xml and several svn:ignore's for JOSM plugins

Location:
applications/editors/josm/plugins/tagging-preset-tester
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tagging-preset-tester

    • Property svn:ignore set to
      build
      dist
  • applications/editors/josm/plugins/tagging-preset-tester/build.xml

    r3791 r3996  
    11<project name="tagging-preset-tester" default="build" basedir=".">
    22
    3         <target name="build">
     3        <target name="compile">
     4                <mkdir dir="build"/>
     5                <javac srcdir="src" destdir="build" classpath="../../core/dist/josm-custom.jar" />
     6        </target>
     7
     8        <target name="build" depends="compile">
    49                <mkdir dir="dist"/>
    510                <jar destfile="dist/tagging-preset-tester.jar"
    6                          basedir="bin"
     11                         basedir="build"
    712                         manifest="src/org/openstreetmap/josm/plugins/taggingpresettester/MANIFEST.MF">
    813                        <fileset dir="."><include name="images/*"/></fileset>
     
    1217        <target name="clean">
    1318                <delete dir="dist"/>
     19                <delete dir="build"/>
    1420        </target>
    1521
Note: See TracChangeset for help on using the changeset viewer.