Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme with maven repo info #53

Merged
merged 1 commit into from
Jul 20, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@ Header files are not available in all Java installs. Double-check you are using
$ ls -d /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/include
ls: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/include: No such file or directory

### Maven repository

The hadoop-lzo package is available at `http://maven.twttr.com/`.

For example, if you are using `ivy`, add the repository in `ivysettings.xml`:
```xml
<ibiblio name="twttr.com" m2compatible="true" root="http://maven.twttr.com/"/>
```

And include hadoop-lzo as a dependency:
```xml
<dependency org="com.hadoop.gplcompression" name="hadoop-lzo" rev="0.4.15"/>
```

### Using Hadoop and LZO

#### Reading and Writing LZO Data
Expand Down