Ignore:
Timestamp:
2007-06-01T10:40:48+02:00 (17 years ago)
Author:
christofd
Message:

using the original livegps now
small fixes in build variable usage

File:
1 edited

Legend:

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

    r2936 r3080  
    33        <property name="josm.build.dir" value="../JOSM"/>
    44        <property name="josm.home.dir" value="${user.home}/.josm"/>
     5  <property name="livegpsplugin.jar" value="${josm.home.dir}/plugins/livegps.jar"/>
    56        <property name="plugin.build.dir" value="bin"/>
    67
     
    2223                <jar destfile="${ant.project.name}.jar" basedir="${plugin.build.dir}">
    2324                        <manifest>
    24                 <attribute name="Plugin-Class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin" />
    25                 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions." />
     25        <attribute name="Plugin-Class" value="at.dallermassl.josm.plugin.surveyor.SurveyorPlugin" />
     26        <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions." />
     27        <attribute name="Plugin-Dependencies" value="livegps" />
     28        <attribute name="Plugin-Stage" value="60" />
    2629                        </manifest>
    2730                </jar>
     
    2932
    3033        <target name="compile" depends="init">
    31                 <mkdir dir="bin"/>
     34                <mkdir dir="${plugin.build.dir}"/>
    3235                <javac srcdir="src" destdir="${plugin.build.dir}" debug="true" source="1.5" target="1.5">
    3336                        <classpath>
     
    3639                <include name="**/*.jar"/>
    3740              </fileset>
     41        <pathelement location="${livegpsplugin.jar}"/>
    3842                        </classpath>
    3943          </javac>
     
    4448        </target>
    4549
    46         <target name="init">
    47         </target>
     50  <target name="init">
     51         </target>
    4852
    4953        <target name="clean">
Note: See TracChangeset for help on using the changeset viewer.