I installed openjdk-6-jdk on my ubuntu box using apt-get.

In system info jenkins is telling me Java.Home is /usr/lib/jvm/java-6-openjdk/jre

However when I specify that directory as JAVA_HOME in Jenkins : "configure system", it returns error message saying that directory does not look like a jdk directory.

it is also failing to pick up my maven install.

Am I missing something obvious ?

link|improve this question

feedback

4 Answers

openjdk-6 is a Java runtime, not a JDK (development kit which contains javac, for example). Install openjdk-6-jdk.

Maven also needs the JDK.

link|improve this answer
that was a typo in the question, I installed the full jdk (javac works). Also mvn works outside of jenkins. – NimChimpsky Nov 18 '11 at 16:40
feedback

Your JAVA_HOME variable must be setted to /usr/lib/jvm/java-6-openjdk and it must be available for the user that starts Jenkins.

link|improve this answer
feedback

In Jenkins try setting JAVA_HOME to /usr/lib/jvm/java-6-openjdk

link|improve this answer
feedback
up vote 0 down vote accepted

In case anyone has similar problems, I used the default sudo apt-get installs for the relevant packages and here are the correct settings:

JAVA_HOME=/usr/lib/jvm/java-7-openjdk-i386

and

MAVE_HOME=/usr/share/maven2
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.