[PJUG Javamail] Eclipse Java Version?
Tim Dysinger
pjug@dysinger.net
Tue, 22 Apr 2003 22:40:36 -0700
Sorry for the double post there.
You can also configure a number of VMs to use in the eclipse preferences. The
last email I sent just specifies the default VM and the one used to launch
eclipse.
-Tim
On Tuesday 22 April 2003 10:35 pm, Tim Dysinger wrote:
> Google for "eclipse" & "command line".
>
> You can, in Linux, make yourself a little script for that. In Windows,
> make yourself a shortcut on your desktop or something and then modify the
> parameters of the shortcut.
>
> Here's a Linux script:
>
> #!/bin/bash
> cd $HOME/tools/eclipse
> exec ./eclipse -vm $JAVA_HOME -data $HOME/work
>
> on windows just modify the parameters of the shortcut to:
>
> c:\eclipse\eclipse.exe -vm c:\my\really\secret\vm -data
> c:\i\dont\like\the\default\workspace
>
> The nice thing about having different workspaces is that you can configure
> them all different. You can have a workspace (not unlike your desk) at
> work and then a differnt workspace (not unlike your desk) at home.
>
> -Tim
>
> On Tuesday 22 April 2003 10:11 pm, Michael Trigoboff wrote:
> > I just downloaded Eclipse and installed it. I have 2 Java versions on my
> > machine: 1.4.0 and 1.4.1. Eclipse seems to have picked out 1.4.0 as the
> > version that it runs under. Is there a way to tell it to run under
> > 1.4.1? I found the "Installed JREs" section of the preferences, but that
> > doesn't change what I see when I go into Help->About... and click on
> > "Configuration Details". What I see in there (among other things) is
> > this:
> >
> > java.home=C:\Program Files\Java\j2re1.4.0
> >
> > I'm wondering how to get this to point to 1.4.1. Or am I worrying about
> > the wrong thing?
> >
> > Thanks...