2011-05-07 80 views
1

檢票給出了一個簡單的「快速啓動」命令與Maven在他們的主頁使用在http://wicket.apache.org/start/quickstart.html簡單的檢票/ Maven快速問題

我安裝這一點,並認識到Maven的自動下載必要條件,它從它的中央存儲庫需要發電機。但是,當我運行它生成的命令,我得到:

 
[INFO] Scanning for projects... 
[INFO] ------------------------------------------------------------------------ 
[INFO] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 0.161s 
[INFO] Finished at: Fri May 06 22:07:28 EDT 2011 
[INFO] Final Memory: 1M/15M 
[INFO] ------------------------------------------------------------------------ 
[ERROR] The goal you specified requires a project to execute but there is no POM in this directory (C:\Users\xxxxxx\Projects\[project dir]). Please verify you invoked Maven from the correct directory. -> [Help 1] 
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. 

我在做什麼錯?

回答

1

該消息表明Maven沒有認識到原型插件。 你能複製和粘貼你正在使用的確切命令嗎? 正在使用Windows cmd shell嗎? 嘗試轉義參數。

+2

我實際上在使用PowerShell。顯然,在cmd.exe中執行完全相同的操作很正常; PowerShell必須對參數做一些瘋狂的事情。感謝提示。 – Hut8 2011-05-07 02:36:03

+0

並感謝您的提示!我遇到了同樣的問題,發現如果我引用了所有參數(通常你必須使用powershell和其他工具,這就是爲什麼我感到驚訝,這在我以前沒有發生過),它的工作。在我的情況下,我發現特別是它是一個-Dversion = 1.2.3導致了這個問題。再次感謝! – 2011-07-03 15:51:07