How to validate using Apache ANT tool for Salesforce?

How to validate using Apache ANT tool for Salesforce?

Sample Package.xml:

    <target name=”validateprod”>
        <sf:deploy       
        username=”${sf.fusername}”
        password=”${sf.password}”
        serverurl=”${sf.sandboxurl}”
        checkOnly=true
        deployroot=”Retrieve”/>
    </target>

Cheers!!!

Leave a Reply