Building applications with Alluxio
For Alluxio versions 1.4 or earlier, use the alluxio-core-client
artifact.
For Alluxio versions 1.5 or later, Alluxio provides several different client artifacts. The Alluxio
file system interface provided by the alluxio-core-client-fs
artifact is recommended for the best
performance and access to Alluxio-specific functionality. If you want to use other interfaces,
include the appropriate client artifact. For example, alluxio-core-client-hdfs
provides a client
implementing HDFS's file system API.
Apache Maven
<dependency>
<groupId>org.alluxio</groupId>
<artifactId>alluxio-core-client-fs</artifactId>
<version>1.8.1</version>
</dependency>
Gradle
compile 'org.alluxio:alluxio-core-client-fs:1.8.1'
Apache Ant
<dependency org="org.alluxio" name="alluxio" rev="1.8.1">
<artifact name="alluxio-core-client-fs" type="jar" />
</dependency>
SBT
libraryDependencies += "org.alluxio" % "alluxio-core-client-fs" % "1.8.1"
Contributing
Contributions via GitHub pull requests are gladly accepted from their original author. Along with
any pull requests, please state that the contribution is your original work and that you license the
work to the project under the project's open source license. Whether or not you state this
explicitly, by submitting any copyrighted material via pull request, email, or other means you agree
to license the material under the project's open source license and warrant that you have the legal
authority to do so.