Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for 
change notification.

The "HowToBuild" page has been changed by StephenConnolly.
http://wiki.apache.org/cassandra/HowToBuild

--------------------------------------------------

New page:
= How To Build Cassandra =

== Current Trunk Version ==

Toolchain requirements:

|| '''Tool''' || '''Version''' ||
|| Java SDK   || 1.6 (preferably the latest) ||
|| ANT        || At least version 1.8 ||

To build the latest version of Cassandra from Subversion:

{{{
svn co http://svn.apache.org/repos/asf/cassandra/trunk cassandra-trunk
cd cassandra-trunk
# if directly connected to the internet
ant
# if connected via a proxy
ant -autoproxy
}}}

== The 0.7 Stream ==

Toolchain requirements:

|| '''Tool''' || '''Version''' ||
|| Java SDK   || 1.6 (preferably the latest) ||
|| ANT        || At least version 1.8 ||

To build the latest version of Cassandra from Subversion:

{{{
svn co http://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.7
cd cassandra-0.7
# if directly connected to the internet
ant
# if connected via a proxy
ant -autoproxy
}}}

== The 0.6 Stream ==

Toolchain requirements:

|| '''Tool''' || '''Version''' ||
|| Java SDK   || 1.6 (preferably the latest) ||
|| ANT        || At least version 1.8 ||

To build the latest version of Cassandra from Subversion:

{{{
svn co http://svn.apache.org/repos/asf/cassandra/branches/cassandra-0.6
cd cassandra-0.6
# if directly connected to the internet
ant
# if connected via a proxy
ant -autoproxy
}}}

== Older versions ==

Not currently documented. Please feel free to add documentation.

== Troubleshooting ==

If the above instructions don't work for you:

 1. Have you checked that your version of ANT meets the minimum required 
version?

 1. Have you checked that you are actually using the correct version of Java? 

 1. Do you have an internet connection? The build has to download 
[[http://maven.apache.org/ant-tasks/index.html|Maven ANT Tasks]] (or 
[[http://ant.apache.org/ivy/|Ivy]] for older builds) and the download all the 
required build dependencies. If you don't have an internet connection, or if 
ANT cannot determine your proxy configuration then the build will fail.

Reply via email to