Monthly Archives: April 2012

Useful maven commands

Project Build Clean a project: mvn clean Compile a project: mvn compile Run unit tests (it also compiles a project): mvn test Build a package (it also executes unit tests): mvn package Run integration test (it also builds a package): mvn verify Install a package … Continue reading

Posted in How to, Java, Maven, Software | Tagged , , , , , , , | Leave a comment

Axis2 clustering with tomcat

I was recently working with the creating axis2 cluster by using tomcat. Instead of running axis as two different webapps in one tomcat instance, I used two different tomcat instances to create the cluster. But i faced a problem which is already … Continue reading

Posted in Axis2, How to, Java, Tomcat | Tagged , , , | Leave a comment