Skip to content

Commit

Permalink
Add Snappy compression codec
Browse files Browse the repository at this point in the history
  • Loading branch information
lw346 authored and Norman Maurer committed Dec 18, 2012
1 parent f6735f8 commit 43e40d6
Show file tree
Hide file tree
Showing 13 changed files with 1,379 additions and 0 deletions.
7 changes: 7 additions & 0 deletions NOTICE.txt
Expand Up @@ -130,3 +130,10 @@ obtained at:
* HOMEPAGE: * HOMEPAGE:
* http://www.osgi.org/ * http://www.osgi.org/


This product optionally depends on 'Snappy', a compression library produced
by Google Inc, which can be obtained at:

* LICENSE:
* license/LICENSE.snappy.txt (New BSD License)
* HOMEPAGE:
* http://code.google.com/p/snappy/
43 changes: 43 additions & 0 deletions codec-snappy/pom.xml
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2012 The Netty Project
~
~ The Netty Project licenses this file to you under the Apache License,
~ version 2.0 (the "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at:
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
~ License for the specific language governing permissions and limitations
~ under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.0.0.Beta1-SNAPSHOT</version>
</parent>

<artifactId>netty-codec-snappy</artifactId>
<packaging>jar</packaging>

<name>Netty/Codec/Snappy</name>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-codec</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>netty-handler</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

0 comments on commit 43e40d6

Please sign in to comment.