Downloads

All Cascading build artifacts and many third-party extensions are available from the conjars.org Maven repository. More info..

Stable Releases

These releases support stable releases of Apache Hadoop 0.20.2, 0.20.205.0, and 1.0.x. See the compatibility chart for a complete list.

Cascading 2.1

The latest.txt and latest-jar.txt URLs are canonical and are updated to reference the latest builds. Dereference these links in scripts (wget -i http://…/latest.txt or wget –no-check-certificate `wget -O – -q http://…/ | sed -n ‘s|http:|https:|p’`).


Pending Releases


These releases are considered unstable and provided only as a convenience. Note that Multitool and Load are automatically re-built after every Cascading WIP build.

Cascading 2.1 WIP

Prior Releases


These releases are deprecated but available for those who haven’t upgraded to 2.1 yet.

These releases support stable releases of Apache Hadoop 0.19.2 through Hadoop 0.20.205.

Cascading 2.0
Cascading 1.2

Using Maven


Cascading lives in the Conjars Maven repository.

2.1.x are the stable releases, 2.1.x-wip-nnn are the work in progress releases and generally not for production use.

All available revisions. Note the wip releases are tagged on github and built from this repository.

To include Cascading in your Maven project, put the following POM file settings in the proper place.

<repository>
   <id>conjars.org</id>
   <url>http://conjars.org/repo</url>
</repository>

<dependency>
   <groupId>cascading</groupId>
   <artifactId>cascading-core</artifactId>
   <version>2.1.x</version>
</dependency>

<dependency>
   <groupId>cascading</groupId>
   <artifactId>cascading-local</artifactId>
   <version>2.1.x</version>
</dependency>

<dependency>
   <groupId>cascading</groupId>
   <artifactId>cascading-hadoop</artifactId>
   <version>2.1.x</version>
</dependency>

<dependency>
   <groupId>cascading</groupId>
   <artifactId>cascading-xml</artifactId>
   <version>2.1.x</version>
</dependency>

<dependency>
   <groupId>cascading</groupId>
   <artifactId>cascading-platform</artifactId>
   <version>2.1.x</version>
   <scope>test</scope>
</dependency>