Scalate

Download it today!

Download

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.5.1</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