HBASE-3625 improve/fix support excluding Tests via Maven -D property. (Alejandro Abdelnur via todd)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1081624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b45a3456a1
commit
4953a4fd11
|
@ -167,6 +167,8 @@ Release 0.90.2 - Unreleased
|
|||
HBASE-3586 Improve the selection of regions to balance
|
||||
HBASE-3623 Allow non-XML representable separator characters in the ImportTSV tool
|
||||
(Harsh J Chouraria via Stack)
|
||||
HBASE-3625 improve/fix support excluding Tests via Maven -D property
|
||||
(Alejandro Abdelnur via todd)
|
||||
|
||||
Release 0.90.1 - Unreleased
|
||||
|
||||
|
|
5
pom.xml
5
pom.xml
|
@ -396,6 +396,7 @@
|
|||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/*$*</exclude>
|
||||
<exclude>${test.exclude.pattern}</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
@ -528,6 +529,10 @@
|
|||
<stax-api.version>1.0.1</stax-api.version>
|
||||
<thrift.version>0.5.0</thrift.version><!-- newer version available -->
|
||||
<zookeeper.version>3.3.2</zookeeper.version>
|
||||
|
||||
<!-- For flaky tests exclusion -->
|
||||
<test.exclude></test.exclude>
|
||||
<test.exclude.pattern>**/${test.exclude}.java</test.exclude.pattern>
|
||||
</properties>
|
||||
|
||||
<!-- Sorted by groups of dependencies then groupId and artifactId -->
|
||||
|
|
Loading…
Reference in New Issue