Wednesday, June 29, 2011

Mysql commands

Show mysql td table process_stage
select * from process_stage;

Change the process stage
update process set stage_id = 7, process_type_id = 1;

How to skip tests in maven

Here is the command that excludes tests during mvn package:

mvn -Dmaven.test.skip=true package


or


mvn package -DskipTests


Consult this example from appach site: http://maven.apache.org/plugins/maven-surefire-plugin/examples/skipping-test.html