Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.
The "Hbase/MavenPrimer" page has been changed by jgray. http://wiki.apache.org/hadoop/Hbase/MavenPrimer?action=diff&rev1=10&rev2=11 -------------------------------------------------- 1. [[#core|I don't want to build all the other modules, I'm just interested in the base Hbase 'core' stuff, is there something simpler?]] 1. [[#javadoc|How do I build javadoc only?]] 1. [[#oneunittest|How do I run one unit test only?]] + 2. [[#unittestoutput|How do I get full log output from unit tests?]] 1. [[#starthbase|How do I do an in-situ bin/start-hbase.sh?]] 1. [[#equiv|How do I do the equivalent of an "ant clean", or "ant jar", etc., using maven?]] 1. [[#otherjar|How do I try out a jar that is not installed in a maven repository (e.g. a new zookeeper jar)?]] @@ -75, +76 @@ == How do I run one unit test only? == - {{{mvn mvn test -Dtest=<CLASSNAME>}}} + {{{mvn test -Dtest=<CLASSNAME>}}} + + <<Anchor(unittestoutput)>> + + == How do I get full log output from unit tests? == + + {{{mvn test -Dtest.output=true}}} + + Test output is located in: core/target/surefire-reports/ <<Anchor(starthbase)>>
