<?xml version="1.0" encoding="utf-8"?>
<project name="proj4j" default="dist" basedir=".">
    <!-- enter the SVN commit message -->
    <property name="commit.message" value="Commit message"/>
    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    <property name="plugin.main.version" value="7001"/>
	
    <property name="plugin.author" value="Josh Doe &lt;josh@joshdoe.com&gt;"/>
    <property name="plugin.class"  value="org.openstreetmap.josm.plugins.proj4j.Proj4J"/>
    <property name="plugin.description" value="adds projections from Proj4J"/>
    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Proj4J"/>
	<property name="plugin.early" value="true"/>

    <!-- ** include targets that all plugins have in common ** -->
    <import file="../build-common.xml"/>
	
    <target name="setup-dist-default">
        <copy todir="${plugin.build.dir}/resources" failonerror="no" includeemptydirs="no">
            <fileset dir="resources" excludes="nad"/>
        </copy>
        <copy todir="${plugin.build.dir}/nad"> 
            <fileset dir="resources/nad"/> 
        </copy> 
        <copy todir="${plugin.build.dir}/images" failonerror="no" includeemptydirs="no">
            <fileset dir="images"/>
        </copy>
        <copy todir="${plugin.build.dir}/data" failonerror="no" includeemptydirs="no">
            <fileset dir="data"/>
        </copy>
        <copy todir="${plugin.build.dir}">
            <fileset dir=".">
                <include name="README"/>
                <include name="LICENSE*"/>
                <include name="*GPL*"/>
            </fileset>
        </copy>
    </target>

</project>
