--------------------------------------------------------------------------------
Key: HBASE-2594
URL: https://issues.apache.org/jira/browse/HBASE-2594
Project: Hadoop HBase
Issue Type: Improvement
Reporter: stack
Assignee: stack
Fix For: 0.21.0
The regex used to find tests is broader than what we used use in 0.20. See http://maven.apache.org/plugins/maven-surefire-plugin/examples/inclusion-exclusion.html
Put it back to the 0.20 setting:
{code}
diff --git a/pom.xml b/pom.xml
index 794ae05..057b856 100644
--- a/pom.xml
+++ b/pom.xml
@@ -323,8 +323,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
+ <includes>
+ <include>**/Test*.java</include>
+ </includes>
<excludes>
- <exclude>**/SoftValueSortedMapTest.java</exclude>
<exclude>**/*$*</exclude>
</excludes>
</configuration>
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.