IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

EDI et Outils pour Java Discussion :

build.xml qui plante sans raison


Sujet :

EDI et Outils pour Java

  1. #1
    Membre à l'essai
    Inscrit en
    Janvier 2003
    Messages
    31
    Détails du profil
    Informations forums :
    Inscription : Janvier 2003
    Messages : 31
    Points : 22
    Points
    22
    Par défaut build.xml qui plante sans raison
    Bonjour

    Je cherche à générer mon EJB via xdoclet mais mon fichier build.xml me donne une erreur assez bizzarre.
    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
    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 'target'.
    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 the JAR file and/or libraries
    implementing the functionality were not found at the time you
    yourself built your installation of Ant from the Ant sources.
    Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
    task and make sure it contains more than merely a META-INF/MANIFEST.MF.
    If all it contains is the manifest, then rebuild Ant with the needed
    libraries present in ${ant.home}/lib/optional/ , or alternatively,
    download a pre-built 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>.
    - You are attempting to use a task defined using 
    <presetdef> or <macrodef> but have spelt wrong or not 
    defined it at the point of use
    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.
    
    Je vous odnne le code dui build.xml
    Code XML : 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
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    <?xml version="1.0"?>
    <project name="EJB StrateNxgServices" default="ejb-jar" basedir=".">
     <property file="build.properties"/>
     
       <!-- Init -->
       <target name="init">   
          <property name="lib.dir" value="lib" />     
          <property name="src.dir" value="src" />
          <property name="generated.src.dir" value="gen-src" />
          <property name="java.dir" value="." />
          <property name="generated.java.dir" value="${generated.src.dir}/java" />
          <property name="config.dir" value="config" />
          <property name="build.dir" value="build" />
          <property name="dist.dir" value="dist" />
          <property name="build.compiler" value="modern" />
          <property name="name" value="receiver-PortfolioServiceEJB" />
       </target>
     
       <!-- Prepare -->
       <target name="prepare" depends="init">
          <mkdir dir="${build.dir}" />
          <mkdir dir="${build.dir}/ejb" />
          <mkdir dir="${build.dir}/ejb/META-INF" />
          <mkdir dir="${build.dir}/j2ee" />
          <mkdir dir="${dist.dir}" />
          <mkdir dir="${generated.src.dir}" />
          <mkdir dir="${generated.java.dir}" />
       </target>
       <!-- Run EJBDoclet -->
       <target name="ejbdoclet" depends="prepare">
         <taskdef name="ejbdoclet"
                   classname="xdoclet.ejb.EjbDocletTask" classpath="${java.class.path};${xdoclet.jar.path};${xdoclet.jar.path1};${xdoclet.jar.path2};${log4j.jar.path};${ant.jar.path}"
          />  
        <target name="compil"> 
           <javac srcdir="${src.dir}" destdir="${build}">
              <classpath refid="java.class.path"/>
             </javac> 
           <javac srcdir="${src.dir}" destdir="${build}">
           <classpath refid="java.class.path"/>
          </javac>
         </target> 
          <ejbdoclet
             sourcepath="${java.dir}"
             destdir="${generated.java.dir}"
             excludedtags="@version,@author"
             ejbspec="2.0">
             <fileset dir="${java.dir}">
                <include name="**/${src.dir}/PortfolioServiceEJB.java" />
             </fileset>
             <remoteinterface/>
             <homeinterface/>
             <deploymentdescriptor destdir="${build.dir}/ejb/META-INF"/>
             <jboss version="2.4" xmlencoding="UTF-8" destdir="${build.dir}/ejb/META-INF"/>
             <weblogic xmlencoding="UTF-8" destdir="${build.dir}/ejb/META-INF" validatexml="true"/>
             <webSphere destdir="${build.dir}/ejb/META-INF" />
             <orion destdir="${build.dir}/ejb/META-INF" />
          </ejbdoclet>
       </target>
     
       <!-- Compile -->
       <target name="compile" depends="ejbdoclet">
          <!-- Compile EJBs -->
          <javac srcdir="${java.dir};${generated.java.dir}"
                 destdir="${build.dir}/ejb"
                 includes="src/**/*.java">
          </javac>
       </target>
     
       <!-- Create EJB-JAR file -->
       <target name="ejb-jar" depends="compile">
          <jar jarfile="${build.dir}/j2ee/${name}-ejb.jar" basedir="${build.dir}/ejb" />
       </target>
     
       <!-- Clean everything -->
       <target name="clean" depends="init">
          <delete dir="${build.dir}" />
          <delete dir="${dist.dir}" />
          <delete dir="${generated.src.dir}" />
       </target>
     
    </project>
    et mon build.properties
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    lib=D:/StrateNxg/workspace/nam_external/jars
    xdoclet.jar.path=D:/StrateNxg/workspace/xdoclet/jars/xdoclet-ejb-module-1.2b4.jar
    xdoclet.jar.path1=D:/StrateNxg/workspace/xdoclet/jars/xdoclet-1.2.1.jar
    xdoclet.jar.path2=D:/StrateNxg/workspace/xdoclet/jars/xjavadoc-1.1.jar
    ant.jar.path=D:/apache-ant-1.6.5/lib/ant.jar
    log4j.jar.path=D:/StrateNxg/workspace/nam_external/jars/log4j.jar
    
    J'arrive pas à voir dou vien tce probléme.[/code]

  2. #2
    Membre expérimenté Avatar de yann2
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2004
    Messages
    897
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 897
    Points : 1 635
    Points
    1 635
    Par défaut
    Bonjour

    Est ce que ce texte est la seule sortie sur la console ?
    Si non, pouvons nous avoir le début.

  3. #3
    Membre à l'essai
    Inscrit en
    Janvier 2003
    Messages
    31
    Détails du profil
    Informations forums :
    Inscription : Janvier 2003
    Messages : 31
    Points : 22
    Points
    22
    Par défaut
    Oui c'est sur la console
    voici le début
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    Buildfile: D:\StrateNxg\workspace\StrateNxgServices\build.xml
    init:
    prepare:
    ejbdoclet:
    BUILD FAILED
    D:\StrateNxg\workspace\StrateNxgServices\build.xml:43: Could not create task or type of type: target.
    


  4. #4
    Membre expérimenté Avatar de yann2
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2004
    Messages
    897
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 897
    Points : 1 635
    Points
    1 635
    Par défaut
    re,

    Il y a une balise target qui n'ait pas fermée :

    Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     <!-- Run EJBDoclet -->
       <target name="ejbdoclet" depends="prepare">
         <taskdef name="ejbdoclet"
                   classname="xdoclet.ejb.EjbDocletTask" classpath="${java.class.path};${xdoclet.jar.path};${xdoclet.jar.path1};${xdoclet.jar.path2};${log4j.jar.path};${ant.jar.path}"
          />  
        <target name="compil"> 
           <javac srcdir="${src.di

    Voilà

  5. #5
    Membre à l'essai
    Inscrit en
    Janvier 2003
    Messages
    31
    Détails du profil
    Informations forums :
    Inscription : Janvier 2003
    Messages : 31
    Points : 22
    Points
    22
    Par défaut
    Si elle est fermée plus bas

  6. #6
    Membre expérimenté Avatar de yann2
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2004
    Messages
    897
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 897
    Points : 1 635
    Points
    1 635
    Par défaut
    re,

    On ne peut pas définir une target dans une target. Il faut utiliser les dépendances ou utiliser la tâche ant (je crois...).

    EDIT : C'est bien ça : http://ant.apache.org/manual/CoreTasks/ant.html

  7. #7
    Membre à l'essai
    Inscrit en
    Janvier 2003
    Messages
    31
    Détails du profil
    Informations forums :
    Inscription : Janvier 2003
    Messages : 31
    Points : 22
    Points
    22
    Par défaut
    C'etait ça mais là j'ai une autre erreur aussi qui en ressort
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    [ejbdoclet] The xdoclet.ejb.EjbDocletTask is deprecated and will be removed in a future version of XDoclet. Please update your taskdef to use xdoclet.modules.ejb.EjbDocletTask instead.
    BUILD FAILED
    D:\StrateNxg\workspace\StrateNxgServices\build.xml:48: The ejbdoclet task doesn't support the sourcepath attribute.
    Total time: 953 milliseconds
    

  8. #8
    Membre expérimenté Avatar de yann2
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2004
    Messages
    897
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 897
    Points : 1 635
    Points
    1 635
    Par défaut
    Bonjour

    Ca va bien aujourd'hui.

    Bon ben c'est simple tu as un attribut sourcepath dans la tâche ejbdoclet qui n'est pas connu.

    As-tu repris un exemple ? Si oui met le à la poubelle...

    Bon je vais jeter un oeil sur la tâche ejbdoclet.

    [edit] Après vérification il y a bien un sourcepath donc .

    Bon courage

  9. #9
    Membre expérimenté Avatar de yann2
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2004
    Messages
    897
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Hauts de Seine (Île de France)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2004
    Messages : 897
    Points : 1 635
    Points
    1 635
    Par défaut
    re,

    Je n'avais pas lu le message d'erreur jusqu'à la fin.

    Il faut utiliser :
    xdoclet.modules.ejb.EjbDocletTask
    ICI : http://xdoclet.sourceforge.net/xdocl...ocletTask.html

    bon courage.

  10. #10
    Membre à l'essai
    Inscrit en
    Janvier 2003
    Messages
    31
    Détails du profil
    Informations forums :
    Inscription : Janvier 2003
    Messages : 31
    Points : 22
    Points
    22
    Par défaut
    Je l'ai fait mais je n'ai aucun changement j'ai même d'autres erreurs .
    j'ai l'impression que dés que je corrige un bug j'en ai dix plus compliquées encore.

    Quelqu'un aurait-il un build.xml pour éxécuter un ejb sous jboss.Merci je galére grave depuis hier

Discussions similaires

  1. portable qui plante sans cesse
    Par xxg-ricexx dans le forum Ordinateurs
    Réponses: 7
    Dernier message: 25/05/2009, 08h58
  2. L'interface plante sans raison apparente
    Par mamelouk dans le forum Qt
    Réponses: 6
    Dernier message: 03/10/2008, 08h12
  3. XML qui plante
    Par ossmoz dans le forum ActionScript 1 & ActionScript 2
    Réponses: 1
    Dernier message: 25/09/2008, 18h38
  4. RuntimeException qui apparait sans raison apparente
    Par m_piou dans le forum Eclipse Java
    Réponses: 0
    Dernier message: 12/09/2008, 17h04
  5. Réponses: 2
    Dernier message: 17/01/2007, 19h23

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo