Essa � pro Helder :-)

Estou usando o Ant 1.5, com Win2K e ANT_HOME=D:\jakarta-ant-1.5 e tenho o seguinte target:

<target name="teste.locaweb" depends="dist"
            description="Atualiza arquivos no ambiente de testes da LocaWeb">
    <ftp server="${ftp.server}"
            userid="${ftp.user}"
            password="${ftp.pass}"
            remotedir="/public_html/teste"
            verbose="true"
            newer="yes"
            binary="yes"        
       >
   
        <fileset dir="${dist.home}"/>

    </ftp>
</target>
 
J� baixei a depend�ncia, que est� em %ANT_HOME%\lib\NetComponents-1.3.8.jar  mas mesmo assim ocorre o erro abaixo (vejam os coment�rios). Algu�m tem alguma sugest�o ?
 
 
BUILD FAILED
file:E:/prj/jvelox/build.xml:314: Could not create task or type of type: ftp.
 
Ant could not find the task or a class this task relies upon.
 
This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
 - You have misspelt 'ftp'.
   Fix: check your spelling.
   Parece estar OK
 - The task needs an external JAR file to execute
   and this is not found at the right place in the classpath.
   Fix: check the documentation for dependencies.
   Fix: declare the task.
   J� testei com o NetComponents-1.3.8.jar tanto no diretorio lib quanto no CLASSPATH e nenhum funcionou
 - The task is an Ant optional task and optional.jar is absent
   Fix: look for optional.jar in ANT_HOME/lib, download if needed
   optional.jar est� l�
 - The task was not built into optional.jar as dependent
   libraries were not found at build time.
   Fix: look in the JAR to verify, then rebuild with the needed
   libraries, or download a release version from apache.org
   Beixei a vers�o bin�ria mas mesmo assim verifiquei no options.jar e existe FTP.class l� dentro
 - The build file was written for a later version of Ant
   Fix: upgrade to at least the latest release version of Ant
    1.5 n�o � a �ltima vers�o est�vel ?
 - The task is not an Ant core or optional task
   and needs to be declared using <taskdef>.
   � uma optional task
 
Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath
 
J� falei que est� l�.
 
Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.
 
[]s
By Ale!

Responder a