我正在使用ANT在eclipse中构建一个名为“HelloWebApp”的简单Web应用程序项目。但是在使用ANT构建build.xml文件时,我收到以下错误。
Buildfile: C:\Users\bimal\workspace\HelloWebApp\build.xml
clean:
[echo] Cleaning the build
init:
[echo] Creating the build directory
BUILD FAILED
C:\Users\bimal\workspace\HelloWebApp\build.xml:18: Directory C:\Users\bimal\workspace\HelloWebApp\build \WEB-INF\classes creation was not successful for an unknown reason
Total time: 849 milliseconds
build.xml文件中导致错误的部分如下所示。
<target name="init" depends="clean">`
<echo>Creating the build directory</echo>
<mkdir dir="${build.dir}/WEB-INF/classes"/>
<mkdir dir="${build.dir}/WEB-INF/lib"/>
<mkdir dir="${dist.dir}"/>
</target>
请为我提供此问题的解决方案。提前谢谢。
答案 0 :(得分:2)
确保每个人都对该文件夹具有读/写权限,使用文件夹首选项菜单中的Windows权限选项卡检查是否正确。