我找不到解决方案来解决这个问题,你能帮帮我吗?
<project name="HelloWorldWS" default="dist" basedir=".">
<description>
Web Services build file
</description>
<!-- set global properties for this build -->
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<property name="webcontent" location="WebContent"/>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init"
description="compile the source ">
<javac destdir="${build}" debug="true" srcdir="${src}" includeantruntime="false">
<classpath refid="compile.classpath"/>
</javac>
</target>
<target name="dist" depends="compile"
description="generate the distribution" >
<!-- Create the distribution directory -->
<mkdir dir="${dist}/lib"/>
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
<jar jarfile="${dist}/lib/MyProject-${DSTAMP}.jar" basedir="${build}"/>
</target>
<target name="war" depends="compile"
description="generate the distribution war" >
<!-- Create the war distribution directory -->
<mkdir dir="${dist}/war"/>
<!-- Follow standard WAR structure -->
<copydir dest="${dist}/war/build/WEB-INF/" src="${webcontent}/WEB-INF/" />
<copydir dest="${dist}/war/build/WEB-INF/classes/" src="${build}" />
<jar jarfile="${dist}/war/HelloWorld-${DSTAMP}.war" basedir="${dist}/war/build/"/>
</target>
<target name="clean"
description="clean up" >
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>
我收到了这条消息:
Buildfile:E:\Bibliothèque logicielle \ workspace \ projetServices \ build.xml init:compile: [javac]警告:将来修改com \ bh \ dao \ CompteDAO.java。 [javac]警告:com \ bh \ dao \ GenericDAO.java将来修改。 [javac]警告:将来修改com \ bh \ dao \ Mouvement_CompteDAO.java。 [javac]警告:将来修改com \ bh \ dao \ SoldeDAO.java。 [javac]警告:com \ bh \ dao \ UserDAO.java将来修改。 [javac]警告:将来修改com \ bh \ dao \ VirementDAO.java。 [javac]警告:将来修改com \ bh \ jpa \ Avis.java。 [javac]警告:将来修改com \ bh \ jpa \ Compte.java。 [javac]警告:将来修改com \ bh \ jpa \ Mouvement_Compte.java。 [javac]警告:将来修改com \ bh \ jpa \ Solde.java。 [javac]警告:将来修改com \ bh \ jpa \ User.java。 [javac]警告:将来修改com \ bh \ jpa \ V1.java。 [javac]警告:将来修改com \ bh \ jpa \ V2.java。 [javac]警告:将来修改com \ bh \ jpa \ Virement.java。 [javac]警告:将来修改com \ bh \ methods \ FileMethods.java。 [javac]警告:com \ bh \ services \ HibernateUtils.java将来修改。 [javac]警告:将来修改com \ bh \ services \ Serveur.java。 [javac]警告:将来修改com \ bh \ services \ Service.java。 [javac]警告:将来修改com \ bh \ services \ ServicesInterface.java。 [javac]警告:com \ bh \ services \ client \ Avis.java将来修改。 [javac]警告:将来修改com \ bh \ services \ client \ Compte.java。 [javac]警告:将来修改com \ bh \ services \ client \ ConsulterAvis.java。 [javac]警告:将来修改com \ bh \ services \ client \ ConsulterAvisResponse.java。 [javac]警告:将来修改com \ bh \ services \ client \ ConsulterListeCpt.java。 [javac]警告:com \ bh \ services \ client \ ConsulterListeCptResponse.java在 未来。 [javac]警告:将来修改com \ bh \ services \ client \ ConsulterSldChqCpt.java。 [javac]警告:com \ bh \ services \ client \ ConsulterSldChqCptResponse.java在 未来。 [javac]警告:将来修改的com \ bh \ services \ client \ Exception.java。 [javac]警告:com \ bh \ services \ client \ Exception_Exception.java将来修改。 [javac]警告:com \ bh \ services \ client \ ListerOperations.java将来修改。 [javac]警告:com \ bh \ services \ client \ ListerOperationsResponse.java在 未来。 [javac]警告:将来修改com \ bh \ services \ client \ MouvementCompte.java。 [javac]警告:com \ bh \ services \ client \ ObjectFactory.java将来修改。 [javac]警告:将来修改com \ bh \ services \ client \ Service.java。 [javac]警告:com \ bh \ services \ client \ ServiceService.java将来修改。 [javac]警告:将来修改com \ bh \ services \ client \ Solde.java。 [javac]警告:将来修改com \ bh \ services \ client \ User.java。 [javac]警告:将来修改com \ bh \ services \ client \ ValidationRIBC.java。 [javac]警告:com \ bh \ services \ client \ ValidationRIBCResponse.java在 未来。 [javac]警告:com \ bh \ services \ client \ VirementCompteACompte.java将来修改。 [javac]警告:com \ bh \ services \ client \ VirementCompteACompteResponse.java已修改 未来。 [javac]警告:com \ bh \ services \ client \ VirementDeMasse.java将来修改。 [javac]警告:com \ bh \ services \ client \ VirementDeMasseResponse.java在 未来。 [javac]警告:将来修改com \ bh \ services \ client \ package-info.java。 [javac]警告:将来修改com \ bh \ tests \ test.java。 [javac]警告:将来修改hibernate.cfg.xml。 [javac]警告:将来修改log4j.properties。 [javac]将45个源文件编译为E:\Bibliothèquelogieielle\ workspace \ projetServices \ build
建立失败的E:\Bibliothèque logicielle \ workspace \ projetServices \ build.xml:21:参考 找不到compile.classpath。
总时间:705毫秒
有什么建议吗?
答案 0 :(得分:2)
您的:compile.classpath
(<classpath refid="compile.classpath"/>
)未在构建脚本中的任何位置定义。
您必须定义库的路径。像这样:
<property name="lib.dir" value="${basedir}/lib"/>
<path id="compile.classpath">
<fileset dir="${lib.dir}" includes="*.jar"/>
</path>