我有一個非常,非常簡單的任何構建腳本:爲什麼這個簡單的ant文件在Eclipse中被標記爲錯誤?
<project name="quiz_jar" default="all">
<target name="all">
<jar destfile="/home/mike/export/quiz_all.jar" duplicate="preserve">
<archives>
<zips>
<files includes="/home/mike/export/quiz.jar" />
<files includes="/home/mike/download/jeuclid-3.1.9/repo/*.jar" />
</zips>
</archives>
<manifest>
<attribute name="Main-Class" value="com.antlersoft.quiz.ui.QuizFrame"/>
</manifest>
</jar>
</target>
</project>
,當我運行它在Eclipse的Ant任務(或命令行)
但它工作正常,在問題選項卡,其上標有以下錯誤:
Default target all does not exist in this project
不是因爲最後沒有--這是在問題中,但只顯示在編輯頁面上,而不是當問題被查看時(這將是一個堆棧交換錯誤...)我添加了一些空格現在收盤出現。 – antlersoft