Hi everyone:  I am new to using Maven.

I have the following APT ant task from build.xml and would like to migrate this 
function to Maven.
  Please give me some pointers on how to start?  I've checked the list of Maven 
plugins and dont
see any APT related goals.

BTW, how to search the previous postings in this Maven User List's mail-archive?

Thanks,
Tom

---
<target name="build-server-java" depends="setup">
    <apt
        fork="true"
        debug="${debug}"
        verbose="${verbose}"
        base="${build.classes.home}"
        sourceBase="${build.classes.home}"
        sourcePath="${basedir}/src">
                <classpath>
                <path refid="compile.lib.path"/>
                    <pathelement location="${basedir}/src"/>
                </classpath>
                <option key="nd" value="${build.home}"/>
                <option key="verbose" value="${verbose}"/>
                <source dir="${basedir}/src">
                        <include name="**/server/*.java"/>
                        <include name="**/common/*.java"/>
                </source>
    </apt>
    <!-- copy handlers descriptor file -->
    <copy todir="${build.classes.home}">
        <fileset dir="${basedir}/src">
            <include name="**/server/**/*.xml"/>
        </fileset>
    </copy>
</target


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to