Hi,
you can do that either by giving maven a property at the command line
'maven.test.skip':
mvn -Dmaven.test.skip=true ...
or specify it in the plugin configuration permanently:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
-Tim
cristal schrieb:
Is there a way that the maven2 build can skip the test phase even if the
src/test/java/* is in the folder structure?
Thanks.
--
View this message in context:
http://www.nabble.com/Skipping-Test-Phase.-t1741757.html#a4733181
Sent from the Maven - Users forum at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]