HBASE-7225 on trunk, integration tests are not packaged into distribution
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1415056 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
74b66e46e8
commit
e860e94ded
8
pom.xml
8
pom.xml
|
@ -878,6 +878,7 @@
|
|||
<!-- TODO this is pretty ugly, but works for the moment.
|
||||
Modules are pretty heavy-weight things, so doing this work isn't too bad. -->
|
||||
<server.test.jar>hbase-server-${project.version}-tests.jar</server.test.jar>
|
||||
<it.test.jar>hbase-it-${project.version}-tests.jar</it.test.jar>
|
||||
<surefire.version>2.12-TRUNK-HBASE-2</surefire.version>
|
||||
<surefire.provider>surefire-junit47</surefire.provider>
|
||||
<compat.module>hbase-hadoop1-compat</compat.module>
|
||||
|
@ -962,6 +963,13 @@
|
|||
<groupId>org.apache.hbase</groupId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<artifactId>hbase-it</artifactId>
|
||||
<groupId>org.apache.hbase</groupId>
|
||||
<version>${project.version}</version>
|
||||
<type>test-jar</type>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<!-- General dependencies -->
|
||||
<dependency>
|
||||
<groupId>io.netty</groupId>
|
||||
|
|
|
@ -104,5 +104,13 @@
|
|||
</includes>
|
||||
<fileMode>0644</fileMode>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>hbase-it/target/</directory>
|
||||
<outputDirectory>lib</outputDirectory>
|
||||
<includes>
|
||||
<include>${it.test.jar}</include>
|
||||
</includes>
|
||||
<fileMode>0644</fileMode>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</component>
|
Loading…
Reference in New Issue