Source
The Functional Java source code is hosted in a Subversion repository at https://projects.workingmouse.com/public/functionaljava/.
To check out the trunk source code, install Subversion, then execute the following:
svn co https://projects.workingmouse.com/public/functionaljava/trunk/ functionaljava
A Java Archive (JAR), which consists of the compiled latest source code (trunk), can be downloaded here.
You can browse the source repository online using the link above or using a prettier interface (user/pass: guest/guest). To build from source, you will need to install Apache Ant and you must first run:
ant init
Then, there are many Ant targets available. Here are some common ones:
ant test # Run the testsant archive # Build the Java Archive (JAR)ant javadoc -Dbuild.number=42 # Create the javadocant clean # Clean the build files