DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
$ service mysql start |
Verify that OpenJDK is fully installed. E.g. Debian 7.1 does net install does not have it, and Maven does not add it either.
| Code Block |
|---|
$ apt-get install openjdk-6-jdk
|
NB: at time of writing, version 6 was in use
Maven finds the Java compiler via JAVA_HOME. Find compiler location:
| Code Block |
|---|
$ find / | grep bin/javac
|
Set JAVA_HOME to root of JDK containing this javac. e.g.
| Code Block |
|---|
$ export JAVA_HOME=/usr/lib/jvm/java-6-openjdk-amd64
|
NB: If the next step works, add sure JAVA_HOME to your shell's .rc file.
Go to your repository:
...