Some maven notes.
时间:2010-09-10 来源:Dikang Gu
1. if you want to see the detailed error message on the console, instead of reading it from the surefire files, you can use the maven-surefire-plugin:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.6</version>
<configuration>
<useFile>false</useFile>
</configuration>
</plugin>
Or, do the "mvn clean install -Dsurefire.useFile=false"
相关阅读 更多 +
排行榜 更多 +