The following instructions describes how to build Clerezza. If you don't want to build Clerezza yourself, you can download a launcher from here.
In order to build Clerezza you must have installed:
svn co http://svn.apache.org/repos/asf/incubator/clerezza/
mvn clean install -Dmaven.test.skip=trueSkipping tests because of the pending issue CLEREZZA-326.
How to launch Clerezza is described on the Clerezza usage page.
There is a pending issue with the Scala compiler having a too low stack size (CLEREZZA-612). There is currently no way to increase the Scala compiler's stack size via command line options. Using a 64bit operating system as well as using a machine with more system memory may help to resolve this problem. Alternatively edit the parent pom.xml file (POM file that is the highest in the folder hierarchy) to change the maven Scala plugin configuration in the following manner:
<project>
...
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
...
<configuration>
<jvmArgs>
<jvmArg>-Xss2048k</jvmArg>
</jvmArgs>
</configuration>
...
</plugin>
...
</project>
Set the environment variable MAVEN_OPTS to "-XX:MaxPermSize=256m" before starting the Maven build.
export MAVEN_OPTS="-XX:MaxPermSize=256m"