Download
You can download Scalate from the Maven Repository in the Scalate area.
Download a distribution:
- 1.4.0 zip or tar.gz - Release Notes
 - 1.3.2 zip or tar.gz - Release Notes
 - 1.3.1 zip or tar.gz - Release Notes
 - 1.3 zip or tar.gz - Release Notes
 - 1.2 zip or tar.gz - Release Notes
 - 1.1 zip or tar.gz - Release Notes
 - 1.0 zip or tar.gz - Release Notes
 
You can now install the Scalate Tool
Snapshots
You can download a recent snapshot from the Snapshot Maven Repository in the Scalate area.
Maven
If you build your project using Maven then just add the following to your pom.xml
<dependency>
  <groupId>org.fusesource.scalate</groupId>
  <artifactId>scalate-core</artifactId>
  <version>1.4.0</version>  
</dependency>
The releases should be synchronized to the central maven repository so you should not need to add a maven repository to your pom.xml.
However if a release has not yet made it to the central repository or you want to add a repository for completeness, add the following to your pom.xml
  
<repositories>
   <repository>
     <id>fusesource.m2</id>
     <name>FuseSource Public Repository</name>
     <url>http://repo.fusesource.com/nexus/content/repositories/public</url>
     <snapshots>
       <enabled>false</enabled>
     </snapshots>
     <releases>
       <enabled>true</enabled>
     </releases>
   </repository>
 </repositories>
Snapshots
If you want to use a snapshot version you should ensure you have the Scalate Snapshot Maven repository defined in your pom.xml
  
<repositories>
   <repository>
     <id>fusesource.snapshots</id>
     <name>FuseSource Snapshot Repository</name>
     <url>http://repo.fusesource.com/nexus/content/repositories/snapshots</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
     <releases>
       <enabled>false</enabled>
     </releases>
   </repository>
 </repositories>
Building
If you prefer you can try building from the source code and building it