我覺得這很煩人。有在目標文件夾2個神火*目錄:
- surefire (empty)
- surefire-reports (containing the output of the tests)
我試圖找到刪除surefire
目錄的選項,但我似乎可以找到它。 事情是 - 我有其他沒有這個空目錄的項目,只有surefire-reports
。
我好像做錯了什麼,我該如何刪除它?我問這個問題的主要原因是這個空目錄在控制檯中打破了我的選項卡自動完成,因爲這個目錄是空的。
此外,這只是測試插件,而不是報告插件。項目中沒有任何部分(不是任何父母)。
這是我的保命插件設置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
<configuration>
<excludes>
<exclude>**/*Abstr*Test*</exclude>
</excludes>
</configuration>
</plugin>
提前感謝!
我在這裏提交了一張票: http://jira.codehaus.org/browse/SUREFIRE-846 – carlspring 2012-02-28 14:19:55