Note that there are some explanatory texts on larger screens.

plurals
  1. POwhat's wrong with this Ant file please?
    primarykey
    data
    text
    <p>I can't find a solution to fix this, can you help me please ?</p> <pre><code> &lt;project name="HelloWorldWS" default="dist" basedir="."&gt; &lt;description&gt; Web Services build file &lt;/description&gt; &lt;!-- set global properties for this build --&gt; &lt;property name="src" location="src"/&gt; &lt;property name="build" location="build"/&gt; &lt;property name="dist" location="dist"/&gt; &lt;property name="webcontent" location="WebContent"/&gt; &lt;target name="init"&gt; &lt;!-- Create the time stamp --&gt; &lt;tstamp/&gt; &lt;!-- Create the build directory structure used by compile --&gt; &lt;mkdir dir="${build}"/&gt; &lt;/target&gt; &lt;target name="compile" depends="init" description="compile the source "&gt; &lt;javac destdir="${build}" debug="true" srcdir="${src}" includeantruntime="false"&gt; &lt;classpath refid="compile.classpath"/&gt; &lt;/javac&gt; &lt;/target&gt; &lt;target name="dist" depends="compile" description="generate the distribution" &gt; &lt;!-- Create the distribution directory --&gt; &lt;mkdir dir="${dist}/lib"/&gt; &lt;!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file --&gt; &lt;jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/&gt; &lt;/target&gt; &lt;target name="war" depends="compile" description="generate the distribution war" &gt; &lt;!-- Create the war distribution directory --&gt; &lt;mkdir dir="${dist}/war"/&gt; &lt;!-- Follow standard WAR structure --&gt; &lt;copydir dest="${dist}/war/build/WEB-INF/" src="${webcontent}/WEB-INF/" /&gt; &lt;copydir dest="${dist}/war/build/WEB-INF/classes/" src="${build}" /&gt; &lt;jar jarfile="${dist}/war/HelloWorld-${DSTAMP}.war" basedir="${dist}/war/build/"/&gt; &lt;/target&gt; &lt;target name="clean" description="clean up" &gt; &lt;!-- Delete the ${build} and ${dist} directory trees --&gt; &lt;delete dir="${build}"/&gt; &lt;delete dir="${dist}"/&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> <p>I got this message :</p> <blockquote> <p>Buildfile: E:\Bibliothèque logicielle\workspace\projetServices\build.xml init: compile: [javac] Warning: com\bh\dao\CompteDAO.java modified in the future. [javac] Warning: com\bh\dao\GenericDAO.java modified in the future. [javac] Warning: com\bh\dao\Mouvement_CompteDAO.java modified in the future. [javac] Warning: com\bh\dao\SoldeDAO.java modified in the future. [javac] Warning: com\bh\dao\UserDAO.java modified in the future. [javac] Warning: com\bh\dao\VirementDAO.java modified in the future. [javac] Warning: com\bh\jpa\Avis.java modified in the future. [javac] Warning: com\bh\jpa\Compte.java modified in the future. [javac] Warning: com\bh\jpa\Mouvement_Compte.java modified in the future. [javac] Warning: com\bh\jpa\Solde.java modified in the future. [javac] Warning: com\bh\jpa\User.java modified in the future. [javac] Warning: com\bh\jpa\V1.java modified in the future. [javac] Warning: com\bh\jpa\V2.java modified in the future. [javac] Warning: com\bh\jpa\Virement.java modified in the future. [javac] Warning: com\bh\methods\FileMethods.java modified in the future. [javac] Warning: com\bh\services\HibernateUtils.java modified in the future. [javac] Warning: com\bh\services\Serveur.java modified in the future. [javac] Warning: com\bh\services\Service.java modified in the future. [javac] Warning: com\bh\services\ServicesInterface.java modified in the future. [javac] Warning: com\bh\services\client\Avis.java modified in the future. [javac] Warning: com\bh\services\client\Compte.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterAvis.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterAvisResponse.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterListeCpt.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterListeCptResponse.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterSldChqCpt.java modified in the future. [javac] Warning: com\bh\services\client\ConsulterSldChqCptResponse.java modified in the future. [javac] Warning: com\bh\services\client\Exception.java modified in the future. [javac] Warning: com\bh\services\client\Exception_Exception.java modified in the future. [javac] Warning: com\bh\services\client\ListerOperations.java modified in the future. [javac] Warning: com\bh\services\client\ListerOperationsResponse.java modified in the future. [javac] Warning: com\bh\services\client\MouvementCompte.java modified in the future. [javac] Warning: com\bh\services\client\ObjectFactory.java modified in the future. [javac] Warning: com\bh\services\client\Service.java modified in the future. [javac] Warning: com\bh\services\client\ServiceService.java modified in the future. [javac] Warning: com\bh\services\client\Solde.java modified in the future. [javac] Warning: com\bh\services\client\User.java modified in the future. [javac] Warning: com\bh\services\client\ValidationRIBC.java modified in the future. [javac] Warning: com\bh\services\client\ValidationRIBCResponse.java modified in the future. [javac] Warning: com\bh\services\client\VirementCompteACompte.java modified in the future. [javac] Warning: com\bh\services\client\VirementCompteACompteResponse.java modified in the future. [javac] Warning: com\bh\services\client\VirementDeMasse.java modified in the future. [javac] Warning: com\bh\services\client\VirementDeMasseResponse.java modified in the future. [javac] Warning: com\bh\services\client\package-info.java modified in the future. [javac] Warning: com\bh\tests\test.java modified in the future. [javac] Warning: hibernate.cfg.xml modified in the future. [javac] Warning: log4j.properties modified in the future. [javac] Compiling 45 source files to E:\Bibliothèque logicielle\workspace\projetServices\build</p> <p>BUILD FAILED E:\Bibliothèque logicielle\workspace\projetServices\build.xml:21: Reference compile.classpath not found.</p> <p>Total time: 705 milliseconds</p> </blockquote> <p><img src="https://i.stack.imgur.com/PDM4V.jpg" alt="enter image description here"></p> <p>Any suggestions please ?</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload