I am trying to sign a jar file using an ANT script. I know this has to be pointed at the JDK directory for jarsigner.exe to run, but when I echo java.home it returns the JRE directory.

This isnt a problem for javac because I can set the executeable path, but that does not exist for signjar.

How do I change the java.home path? When I right-click on MyComputer and go to

Properties > Acvanced > Environment Variables the "PATH" variable is correctly pointed to the JDK (C:\program files\java\jdk\bin).

Any help would be appreciated. Thanks.

UPDATE: The file now signs correctly after changing the PATH variable suggested below.

link|improve this question

60% accept rate
feedback

4 Answers

Under Windows you need to follow:

Start -> Control Panel -> System -> Advanced -> Environment Variables.

... and you need to set JAVA_HOME (which is distinct from the PATH variable you mention) to reference the JDK home directory, not the bin sub-directory; e.g. "C:\program files\java\jdk".

link|improve this answer
Changing that variable made it so the script doesnt crash so thank you there. Update above - SF and DSA files are not being placed in the JAR – Ken Aug 17 '09 at 15:23
feedback

In Eclipse the Ant java.home variable is not based on the Windows JAVA_HOME environment variable. Instead it is set to the home directory of the project's JRE.

To change the default JRE (e.g. change it to a JDK) you can go to Windows->Preferences... and choose Java->Installed JREs.

To change just a single project's JRE you can go to Project->Properties and choose Java Build Path and choose the Libraries tab. Find the JRE System Library and click it, then choose Edit and choose the JRE (or JDK) that you want.

If that doesn't work then when running the build file you can choose Run as->Ant Build... and click the JRE tab, choose separate JRE and specify the JRE you want there.

link|improve this answer
feedback

Also be sure to set your JAVA_HOME environment variable. In fact, I usually set the JAVA_HOME, then prepend the string "%JAVA_HOME%\bin" to the system's PATH environment variable so that if Java ever gets upgraded or changed, only the JAVA_HOME variable will need to be changed.

And make sure that you close any command prompt windows or open applications that may read your environment variables, as changes to environment variables are normally not noticed until an application is re-launched.

link|improve this answer
Thanks the file does sign now, but under the META-INF folder I do not get a SF or DSA file that I get when I manually sign the jar. WebStart still says unsigned entries. Anything special I have to do for those to appear or are those needed? – Ken Aug 17 '09 at 15:15
feedback

hi even when I change Java_Home value.. the Java.home value doesn't change to a JAVA_HOME value. java.home continues to point to C:\ProgramFile\Java\Jre6. I did everything (including pointing PATH variable to %JAVA_HOME%/bin and %JAVA_HOME%.

How do I change java.home value to C:\ProgramFile\Java\jdk1.6.0_22?

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.