On Apr 19, 2011, at 5:45 PM, David Blevins wrote: > I use this in bash sometimes to quickly test something: > > #!/bin/bash > for n in container/openejb-core assembly/openejb-tomcat/openejb-tomcat-webapp > assembly/openejb-tomcat/openejb-tomcat-bundle/tomee7; do > > (cd $n && mvn clean install $skip) > > done
Sorry, $skip is a variable I setup in my bash .profile, bascially: skip="-Dmaven.test.skip=true -DfailIfNoTests=false"
