HBASE-14765 Remove snappy profile

This commit is contained in:
Elliott Clark 2015-11-04 15:38:10 -08:00
parent 050ebe850b
commit 86da57f498
5 changed files with 0 additions and 45 deletions

View File

@ -74,11 +74,6 @@
<target>
<replace file="${project.build.outputDirectory}/hbase-default.xml"
token="@@@VERSION@@@" value="${project.version}" />
<mkdir dir="${project.build.directory}/nativelib"/>
<exec executable="tar" dir="${project.build.directory}/nativelib" failonerror="false">
<arg value="xf"/>
<arg value="hadoop-snappy-nativelibs.tar"/>
</exec>
</target>
</configuration>
<goals>

View File

@ -612,22 +612,6 @@
</properties>
</profile>
<!-- Special builds -->
<profile>
<id>hadoop-snappy</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>snappy</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-snappy</artifactId>
<version>${hadoop-snappy.version}</version>
</dependency>
</dependencies>
</profile>
<profile>
<id>native</id>
<activation>

View File

@ -266,23 +266,6 @@
<surefire.skipSecondPart>true</surefire.skipSecondPart>
</properties>
</profile>
<!-- Special builds -->
<profile>
<id>hadoop-snappy</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>snappy</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-snappy</artifactId>
<version>${hadoop-snappy.version}</version>
</dependency>
</dependencies>
</profile>
<!-- Profiles for building against different hadoop versions -->
<!-- There are a lot of common dependencies used here, should investigate
if we can combine these profiles somehow -->

View File

@ -1189,7 +1189,6 @@
<thrift.version>0.9.2</thrift.version>
<zookeeper.version>3.4.6</zookeeper.version>
<slf4j.version>1.7.7</slf4j.version>
<hadoop-snappy.version>0.0.1-SNAPSHOT</hadoop-snappy.version>
<clover.version>4.0.3</clover.version>
<jamon-runtime.version>2.4.1</jamon-runtime.version>
<jettison.version>1.3.3</jettison.version>

View File

@ -419,12 +419,6 @@ Its not an error.
It is link:http://jira.codehaus.org/browse/MSITE-286[officially
ugly] though.
[[build.snappy]]
==== Building in snappy compression support
Pass `-Psnappy` to trigger the `hadoop-snappy` maven profile for building Google Snappy native libraries into HBase.
See also <<snappy.compression.installation,snappy.compression.installation>>
[[releasing]]
== Releasing Apache HBase