diff --git src/main/docbkx/developer.xml src/main/docbkx/developer.xml
index 3d003f1..09f3dd4 100644
--- src/main/docbkx/developer.xml
+++ src/main/docbkx/developer.xml
@@ -512,6 +512,26 @@ HBase have a character not usually seen in other projects.
mvn clean test -PskipServerTests -PskipCommonTests
Also, keep in mind that if you are running tests in the hbase-server module you will need to
apply the maven profiles discussed in to get the tests to run properly.
+
+
+ Run HBase Tests Against Your Module
+ To add the ability to run HBase tests against your own module, add a dependency like the
+ following to its pom.xml file.
+
+
+ ...
+
+ org.apache.hbase
+ hbase-common
+ ${project.version}
+ tests
+
+ ...
+
+ ]]>
+
+