1
我在centos 6.3
,安裝位置,安裝Ant是 /opt/ant
也ANT_HOME
ENV相同目標清潔不存在於該項目目錄
我創建build.xml
刪除testdir
測試。該目錄存在於/opt/ant/testdir
中。
的build.xml
<?xml version="1.0"?>
<project name="testdir" default="all" basedir=".">
<property name="src" value="src"/>
<property name="build" value="build"/>
<property name="lib" value="lib"/>
<target name="all" depends="clean, compile" description="Builds the whole project">
<echo>Doing all</echo>
</target>
<target name="clean">
<echo message="Deleting bin/java ..." />
<delete dir="testdir/test" />
</target>
</project>
使用命令: -
ant -buildfile build.xml Clean
收到錯誤: -
BUILD FAILED
Target "Clean" does not exist in the project "testdir".
任何建議,使其工作?
我已經試過你的解決方案。在項目「testdir」中不存在錯誤「目標」編譯「。它從目標「全部」使用 – Roopendra