To skip running the tests for a particular project, you configure the
skip parameter:

<project>
 ...
 <build>
   ...
   <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-surefire-plugin</artifactId>
     <configuration>
       <skip>true</skip>
     </configuration>
   </plugin>
   ...
 </build>
 ...
</project>

Alternatively, you can execute the following on the command line to skip tests:

mvn -Dmaven.test.skip=true install


On 7/20/06, Piyush Hari <[EMAIL PROTECTED]> wrote:
How can I build the Trinidad Source with TESTS OFF ?




--
Matthias Wessendorf

further stuff:
blog: http://jroller.com/page/mwessendorf
mail: mwessendorf-at-gmail-dot-com

Reply via email to