Bonjour,
Je travaille avec le version ant 1.5.3
Je travaille avec une plate forme WSAD version 5.1
dans mon fichier build.xml, j'ai le code suivant :
et j'ai l'erreur suivante :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 <ftp action="put" server="x02580pa" userid="hddevt" password="c21G8x" remotedir="/sma/he/d1" binary="yes" > <fileset dir="${repdestination}"> <include name="*.zip"/> </fileset> </ftp>
Au début je pensais que c'était un problème de version, mais j'ai vu que dans la doc ant 1.5.3 il existe bien la balise <ftp>.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 [ftp] BUILD FAILED: file:D:/WSAD.5.1/workspace/Synthese_Plus/build.xml:98: 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. - 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. - The task is an Ant optional task and optional.jar is absent Fix: look for optional.jar in ANT_HOME/lib, download if needed - 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 - The build file was written for a later version of Ant Fix: upgrade to at least the latest release version of Ant - The task is not an Ant core or optional task and needs to be declared using <taskdef>. 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 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.
Donc je ne sais plus trop.
Est ce que quelqu'un aurrait une idée.
Merci d'avance.
Partager