https://github.com/Alluxio/alluxio
Raw File
Tip revision: cd75df3d69433723c7ad7a79b1cd1683060dadfd authored by Calvin Jia on 30 July 2015, 23:49:01 UTC
Merge pull request #1200 from apc999/SMALLFIX
Tip revision: cd75df3
README.md
Tachyon
=======

The master branch is in version 0.7.0-SNAPSHOT:

- [Project Homepage](http://www.tachyonproject.org)
- [Previous Releases](https://github.com/amplab/tachyon/tags)
- [Master Branch Document](http://tachyon-project.org/master/)
- [Tachyon Issue Tracker](https://tachyon.atlassian.net/browse/TACHYON)
- [User Mailing List](https://groups.google.com/forum/?fromgroups#!forum/tachyon-users)
- [Meetup Group](http://www.meetup.com/Tachyon)
- [How to Contribute](http://tachyon-project.org/master/Startup-Tasks-for-New-Contributors.html) and
[Beginner's Tasks](https://tachyon.atlassian.net/issues/?jql=project%20%3D%20TACHYON%20AND%20labels%20%3D%20Beginner)


## Building applications with Tachyon

### Dependency Information

#### Apache Maven
```xml
<dependency>
  <groupId>org.tachyonproject</groupId>
  <artifactId>tachyon-client</artifactId>
  <version>0.6.4</version>
</dependency>
```

#### Gradle

```groovy
compile 'org.tachyonproject:tachyon-client:0.6.4'
```

#### Apache Ant
```xml
<dependency org="org.tachyonproject" name="tachyon" rev="0.6.4">
  <artifact name="tachyon-client" type="jar" />
</dependency>
```

#### SBT
```
libraryDependencies += "org.tachyonproject" % "tachyon-client" % "0.6.4"
```
back to top