Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » Problem with Eclipse 3.2 and JDK 1.5
Problem with Eclipse 3.2 and JDK 1.5 [message #226806] Thu, 09 August 2007 20:31 Go to next message
Eclipse UserFriend
Originally posted by: allene.oclc.org

I sent this earlier but got no responses. The problem might have been
the subject, so I'm reposting with a different subject. If there's
someplace else I should post this question, could someone please let me
know?

I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
The project files already existed so I created a "new" project in
Eclipse and Eclipse (correctly) built the classpath. I specified that
the JRE to be used for the project was jre1.5.0_10.

The trouble comes when I try to get eclipse to use ant to run the
build.xml file that the project contains. I'm using ant 1.6.5 (the one
with eclipse). If I use ant to build the project from the command line,
the project builds successfully. If I build individual class files from
within eclipse, the class files build successfully. But if I double
click on the build.xml file to have ant build the project from within
eclipse, the build fails with Java 1.5 compatibility errors.

For example:

[javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15: illegal \
character: \64
[javac] @SuppressWarnings("serial")


I thought maybe this was because eclipse itself was running with a
java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
command line (in the shortcut's properties area), but no joy--I still
get the compatibility errors. I've set the compiler compliance level to
5.0 both globally and for this specific project. I've tried running ant
as an external tool with the JRE set to run in the same JRE as the
workspace, but that doesn't work, either.

What am I missing?
Re: Problem with Eclipse 3.2 and JDK 1.5 [message #226813 is a reply to message #226806] Thu, 09 August 2007 20:50 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: merks.ca.ibm.com

Eva,

Can you tell which version of javac it's finding? Maybe it's finding a
javac from a 1.4 JDK...


Eva Allen wrote:
> I sent this earlier but got no responses. The problem might have been
> the subject, so I'm reposting with a different subject. If there's
> someplace else I should post this question, could someone please let
> me know?
>
> I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
> The project files already existed so I created a "new" project in
> Eclipse and Eclipse (correctly) built the classpath. I specified that
> the JRE to be used for the project was jre1.5.0_10.
>
> The trouble comes when I try to get eclipse to use ant to run the
> build.xml file that the project contains. I'm using ant 1.6.5 (the one
> with eclipse). If I use ant to build the project from the command line,
> the project builds successfully. If I build individual class files from
> within eclipse, the class files build successfully. But if I double
> click on the build.xml file to have ant build the project from within
> eclipse, the build fails with Java 1.5 compatibility errors.
>
> For example:
>
> [javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15: illegal
> \ character: \64
> [javac] @SuppressWarnings("serial")
>
>
> I thought maybe this was because eclipse itself was running with a
> java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
> command line (in the shortcut's properties area), but no joy--I still
> get the compatibility errors. I've set the compiler compliance level to
> 5.0 both globally and for this specific project. I've tried running ant
> as an external tool with the JRE set to run in the same JRE as the
> workspace, but that doesn't work, either.
>
> What am I missing?
Re: Problem with Eclipse 3.2 and JDK 1.5 [message #226820 is a reply to message #226813] Thu, 09 August 2007 22:15 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: allene.oclc.org

I had it print out properties. These are the Java properties I got back:

java.home=D\:\\Program Files\\Java\\jre1.5.0_11
java.endorsed.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\endorsed
java.vendor.url=http\://java.sun.com/
java.version=1.5.0_11
java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
java.specification.name=Java Platform API Specification
java.io.tmpdir=D\:\\DOCUME~1\\allene\\LOCALS~1\\Temp\\
java.vm.info=mixed mode
java.vm.specification.name=Java Virtual Machine Specification
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.specification.vendor=Sun Microsystems Inc.
java.vm.name=Java HotSpot(TM) Client VM
java.library.path=D\:\\Program
Files\\Java\\jre1.5.0_11\\bin;.;D\:\\WINNT\\system32;D\:\\WI NNT;D\:\\PROGRA~1\\MKSTOO~1\\bin;D\:\\PROGRA~1\\MKSTOO~1\\bi n\\X11;D\:\\PROGRA~1\\MKSTOO~1\\mksnt;\\\\OAFS1SERVER\\Util\ \Software\\PVCS\\Serena\\vm\\win32\\bin;\\\\OAFS1SERVER\\Uti l\\Software\\PVCS\\Serena\\vm\\common\\bin\\win32;D\:\\WINNT \\system32;D\:\\WINNT;D\:\\WINNT\\System32\\Wbem;D\:\\Progra m
Files\\Microsoft Office\\office;D\:\\Program
Files\\Hummingbird\\Connectivity\\11.00\\Accessories\\;;D\:\ \Program
Files\\IDM Computer Solutions\\UltraEdit-32;;D\:\\Program Files\\RSA
Security\\RSA Sign-On Manager Client\\;D\:\\Program
Files\\QuickTime\\QTSystem\\;D\:\\Data\\j2sdk1.4.2_10\\bin;D \:\\Data\\j2sdk1.4.2_10\\jre\\bin
java.class.version=49.0
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.vm.specification.version=1.0
java.ext.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\ext
java.vm.vendor=Sun Microsystems Inc.
java.vm.version=1.5.0_11-b03
java.class.path=D\:\\Data\\devtools\\eclipse_321\\startup.ja r
java.vm.specification.vendor=Sun Microsystems Inc.
java.runtime.version=1.5.0_11-b03
java.vendor=Sun Microsystems Inc.
java.specification.version=1.5


Ed Merks wrote:
> Eva,
>
> Can you tell which version of javac it's finding? Maybe it's finding a
> javac from a 1.4 JDK...
>
>
> Eva Allen wrote:
>> I sent this earlier but got no responses. The problem might have been
>> the subject, so I'm reposting with a different subject. If there's
>> someplace else I should post this question, could someone please let
>> me know?
>>
>> I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
>> The project files already existed so I created a "new" project in
>> Eclipse and Eclipse (correctly) built the classpath. I specified that
>> the JRE to be used for the project was jre1.5.0_10.
>>
>> The trouble comes when I try to get eclipse to use ant to run the
>> build.xml file that the project contains. I'm using ant 1.6.5 (the one
>> with eclipse). If I use ant to build the project from the command line,
>> the project builds successfully. If I build individual class files from
>> within eclipse, the class files build successfully. But if I double
>> click on the build.xml file to have ant build the project from within
>> eclipse, the build fails with Java 1.5 compatibility errors.
>>
>> For example:
>>
>> [javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15: illegal
>> \ character: \64
>> [javac] @SuppressWarnings("serial")
>>
>>
>> I thought maybe this was because eclipse itself was running with a
>> java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
>> command line (in the shortcut's properties area), but no joy--I still
>> get the compatibility errors. I've set the compiler compliance level to
>> 5.0 both globally and for this specific project. I've tried running ant
>> as an external tool with the JRE set to run in the same JRE as the
>> workspace, but that doesn't work, either.
>>
>> What am I missing?
Re: Problem with Eclipse 3.2 and JDK 1.5 [message #226827 is a reply to message #226820] Thu, 09 August 2007 22:27 Go to previous messageGo to next message
Darin Swanson is currently offline Darin SwansonFriend
Messages: 2386
Registered: July 2009
Senior Member
Which tools.jar is on your Ant runtime classpath?

Darins

"Eva Allen" <allene@oclc.org> wrote in message
news:f9g3m3$3ul$1@build.eclipse.org...
>I had it print out properties. These are the Java properties I got back:
>
> java.home=D\:\\Program Files\\Java\\jre1.5.0_11
> java.endorsed.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\endorsed
> java.vendor.url=http\://java.sun.com/
> java.version=1.5.0_11
> java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
> java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
> java.specification.name=Java Platform API Specification
> java.io.tmpdir=D\:\\DOCUME~1\\allene\\LOCALS~1\\Temp\\
> java.vm.info=mixed mode
> java.vm.specification.name=Java Virtual Machine Specification
> java.awt.printerjob=sun.awt.windows.WPrinterJob
> java.specification.vendor=Sun Microsystems Inc.
> java.vm.name=Java HotSpot(TM) Client VM
> java.library.path=D\:\\Program
> Files\\Java\\jre1.5.0_11\\bin;.;D\:\\WINNT\\system32;D\:\\WI NNT;D\:\\PROGRA~1\\MKSTOO~1\\bin;D\:\\PROGRA~1\\MKSTOO~1\\bi n\\X11;D\:\\PROGRA~1\\MKSTOO~1\\mksnt;\\\\OAFS1SERVER\\Util\ \Software\\PVCS\\Serena\\vm\\win32\\bin;\\\\OAFS1SERVER\\Uti l\\Software\\PVCS\\Serena\\vm\\common\\bin\\win32;D\:\\WINNT \\system32;D\:\\WINNT;D\:\\WINNT\\System32\\Wbem;D\:\\Progra m
> Files\\Microsoft Office\\office;D\:\\Program
> Files\\Hummingbird\\Connectivity\\11.00\\Accessories\\;;D\:\ \Program
> Files\\IDM Computer Solutions\\UltraEdit-32;;D\:\\Program Files\\RSA
> Security\\RSA Sign-On Manager Client\\;D\:\\Program
> Files\\QuickTime\\QTSystem\\;D\:\\Data\\j2sdk1.4.2_10\\bin;D \:\\Data\\j2sdk1.4.2_10\\jre\\bin
> java.class.version=49.0
> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
> java.vm.specification.version=1.0
> java.ext.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\ext
> java.vm.vendor=Sun Microsystems Inc.
> java.vm.version=1.5.0_11-b03
> java.class.path=D\:\\Data\\devtools\\eclipse_321\\startup.ja r
> java.vm.specification.vendor=Sun Microsystems Inc.
> java.runtime.version=1.5.0_11-b03
> java.vendor=Sun Microsystems Inc.
> java.specification.version=1.5
>
>
> Ed Merks wrote:
>> Eva,
>>
>> Can you tell which version of javac it's finding? Maybe it's finding a
>> javac from a 1.4 JDK...
>>
>>
>> Eva Allen wrote:
>>> I sent this earlier but got no responses. The problem might have been
>>> the subject, so I'm reposting with a different subject. If there's
>>> someplace else I should post this question, could someone please let me
>>> know?
>>>
>>> I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
>>> The project files already existed so I created a "new" project in
>>> Eclipse and Eclipse (correctly) built the classpath. I specified that
>>> the JRE to be used for the project was jre1.5.0_10.
>>>
>>> The trouble comes when I try to get eclipse to use ant to run the
>>> build.xml file that the project contains. I'm using ant 1.6.5 (the one
>>> with eclipse). If I use ant to build the project from the command line,
>>> the project builds successfully. If I build individual class files from
>>> within eclipse, the class files build successfully. But if I double
>>> click on the build.xml file to have ant build the project from within
>>> eclipse, the build fails with Java 1.5 compatibility errors.
>>>
>>> For example:
>>>
>>> [javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15: illegal \
>>> character: \64
>>> [javac] @SuppressWarnings("serial")
>>>
>>>
>>> I thought maybe this was because eclipse itself was running with a
>>> java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
>>> command line (in the shortcut's properties area), but no joy--I still
>>> get the compatibility errors. I've set the compiler compliance level to
>>> 5.0 both globally and for this specific project. I've tried running ant
>>> as an external tool with the JRE set to run in the same JRE as the
>>> workspace, but that doesn't work, either.
>>>
>>> What am I missing?
Re: Problem with Eclipse 3.2 and JDK 1.5 [message #226834 is a reply to message #226827] Thu, 09 August 2007 22:39 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: allene.oclc.org

I don't find the string "tools.jar" anywhere in the output (which is
strange, I could have sworn I saw that yesterday), but I think Ed might
be onto something. I managed to get j2sdk1.4.2 out of the java library
path (I didn't know it was in there) and now the build won't run because
"error running javac.exe compiler." Since that's the case I suspect it
*was* running the javac.exe at j2sdk1.4.2 instead of the right one.

I'll follow this lead and let everyone know where it takes me.

Thanks.

Darin Swanson wrote:
> Which tools.jar is on your Ant runtime classpath?
>
> Darins
>
> "Eva Allen" <allene@oclc.org> wrote in message
> news:f9g3m3$3ul$1@build.eclipse.org...
>> I had it print out properties. These are the Java properties I got back:
>>
>> java.home=D\:\\Program Files\\Java\\jre1.5.0_11
>> java.endorsed.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\endorsed
>> java.vendor.url=http\://java.sun.com/
>> java.version=1.5.0_11
>> java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
>> java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
>> java.specification.name=Java Platform API Specification
>> java.io.tmpdir=D\:\\DOCUME~1\\allene\\LOCALS~1\\Temp\\
>> java.vm.info=mixed mode
>> java.vm.specification.name=Java Virtual Machine Specification
>> java.awt.printerjob=sun.awt.windows.WPrinterJob
>> java.specification.vendor=Sun Microsystems Inc.
>> java.vm.name=Java HotSpot(TM) Client VM
>> java.library.path=D\:\\Program
>> Files\\Java\\jre1.5.0_11\\bin;.;D\:\\WINNT\\system32;D\:\\WI NNT;D\:\\PROGRA~1\\MKSTOO~1\\bin;D\:\\PROGRA~1\\MKSTOO~1\\bi n\\X11;D\:\\PROGRA~1\\MKSTOO~1\\mksnt;\\\\OAFS1SERVER\\Util\ \Software\\PVCS\\Serena\\vm\\win32\\bin;\\\\OAFS1SERVER\\Uti l\\Software\\PVCS\\Serena\\vm\\common\\bin\\win32;D\:\\WINNT \\system32;D\:\\WINNT;D\:\\WINNT\\System32\\Wbem;D\:\\Progra m
>> Files\\Microsoft Office\\office;D\:\\Program
>> Files\\Hummingbird\\Connectivity\\11.00\\Accessories\\;;D\:\ \Program
>> Files\\IDM Computer Solutions\\UltraEdit-32;;D\:\\Program Files\\RSA
>> Security\\RSA Sign-On Manager Client\\;D\:\\Program
>> Files\\QuickTime\\QTSystem\\;D\:\\Data\\j2sdk1.4.2_10\\bin;D \:\\Data\\j2sdk1.4.2_10\\jre\\bin
>> java.class.version=49.0
>> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>> java.vm.specification.version=1.0
>> java.ext.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\ext
>> java.vm.vendor=Sun Microsystems Inc.
>> java.vm.version=1.5.0_11-b03
>> java.class.path=D\:\\Data\\devtools\\eclipse_321\\startup.ja r
>> java.vm.specification.vendor=Sun Microsystems Inc.
>> java.runtime.version=1.5.0_11-b03
>> java.vendor=Sun Microsystems Inc.
>> java.specification.version=1.5
>>
>>
>> Ed Merks wrote:
>>> Eva,
>>>
>>> Can you tell which version of javac it's finding? Maybe it's finding a
>>> javac from a 1.4 JDK...
>>>
>>>
>>> Eva Allen wrote:
>>>> I sent this earlier but got no responses. The problem might have been
>>>> the subject, so I'm reposting with a different subject. If there's
>>>> someplace else I should post this question, could someone please let me
>>>> know?
>>>>
>>>> I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
>>>> The project files already existed so I created a "new" project in
>>>> Eclipse and Eclipse (correctly) built the classpath. I specified that
>>>> the JRE to be used for the project was jre1.5.0_10.
>>>>
>>>> The trouble comes when I try to get eclipse to use ant to run the
>>>> build.xml file that the project contains. I'm using ant 1.6.5 (the one
>>>> with eclipse). If I use ant to build the project from the command line,
>>>> the project builds successfully. If I build individual class files from
>>>> within eclipse, the class files build successfully. But if I double
>>>> click on the build.xml file to have ant build the project from within
>>>> eclipse, the build fails with Java 1.5 compatibility errors.
>>>>
>>>> For example:
>>>>
>>>> [javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15: illegal \
>>>> character: \64
>>>> [javac] @SuppressWarnings("serial")
>>>>
>>>>
>>>> I thought maybe this was because eclipse itself was running with a
>>>> java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
>>>> command line (in the shortcut's properties area), but no joy--I still
>>>> get the compatibility errors. I've set the compiler compliance level to
>>>> 5.0 both globally and for this specific project. I've tried running ant
>>>> as an external tool with the JRE set to run in the same JRE as the
>>>> workspace, but that doesn't work, either.
>>>>
>>>> What am I missing?
>
>
Re: Problem with Eclipse 3.2 and JDK 1.5 [message #226841 is a reply to message #226834] Thu, 09 August 2007 23:12 Go to previous message
Eclipse UserFriend
Originally posted by: allene.oclc.org

That was it. It turns out the only copy of javac.exe on my was the one
with jdk1.4.2_10. (The 1.5 compiler I was using is not local to this
PC, and jre's don't include a compiler--big smack on the head and
*doh*--I knew that). The build still fails in eclipse, but the
compiles work now, so I'm happy.

Thanks.

Eva Allen wrote:
> I don't find the string "tools.jar" anywhere in the output (which is
> strange, I could have sworn I saw that yesterday), but I think Ed might
> be onto something. I managed to get j2sdk1.4.2 out of the java library
> path (I didn't know it was in there) and now the build won't run because
> "error running javac.exe compiler." Since that's the case I suspect it
> *was* running the javac.exe at j2sdk1.4.2 instead of the right one.
>
> I'll follow this lead and let everyone know where it takes me.
>
> Thanks.
>
> Darin Swanson wrote:
>> Which tools.jar is on your Ant runtime classpath?
>>
>> Darins
>>
>> "Eva Allen" <allene@oclc.org> wrote in message
>> news:f9g3m3$3ul$1@build.eclipse.org...
>>> I had it print out properties. These are the Java properties I got
>>> back:
>>>
>>> java.home=D\:\\Program Files\\Java\\jre1.5.0_11
>>> java.endorsed.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\endorsed
>>> java.vendor.url=http\://java.sun.com/
>>> java.version=1.5.0_11
>>> java.vendor.url.bug=http\://java.sun.com/cgi-bin/bugreport.cgi
>>> java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
>>> java.specification.name=Java Platform API Specification
>>> java.io.tmpdir=D\:\\DOCUME~1\\allene\\LOCALS~1\\Temp\\
>>> java.vm.info=mixed mode
>>> java.vm.specification.name=Java Virtual Machine Specification
>>> java.awt.printerjob=sun.awt.windows.WPrinterJob
>>> java.specification.vendor=Sun Microsystems Inc.
>>> java.vm.name=Java HotSpot(TM) Client VM
>>> java.library.path=D\:\\Program
>>> Files\\Java\\jre1.5.0_11\\bin;.;D\:\\WINNT\\system32;D\:\\WI NNT;D\:\\PROGRA~1\\MKSTOO~1\\bin;D\:\\PROGRA~1\\MKSTOO~1\\bi n\\X11;D\:\\PROGRA~1\\MKSTOO~1\\mksnt;\\\\OAFS1SERVER\\Util\ \Software\\PVCS\\Serena\\vm\\win32\\bin;\\\\OAFS1SERVER\\Uti l\\Software\\PVCS\\Serena\\vm\\common\\bin\\win32;D\:\\WINNT \\system32;D\:\\WINNT;D\:\\WINNT\\System32\\Wbem;D\:\\Progra m
>>> Files\\Microsoft Office\\office;D\:\\Program
>>> Files\\Hummingbird\\Connectivity\\11.00\\Accessories\\;;D\:\ \Program
>>> Files\\IDM Computer Solutions\\UltraEdit-32;;D\:\\Program Files\\RSA
>>> Security\\RSA Sign-On Manager Client\\;D\:\\Program
>>> Files\\QuickTime\\QTSystem\\;D\:\\Data\\j2sdk1.4.2_10\\bin;D \:\\Data\\j2sdk1.4.2_10\\jre\\bin
>>>
>>> java.class.version=49.0
>>> java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
>>> java.vm.specification.version=1.0
>>> java.ext.dirs=D\:\\Program Files\\Java\\jre1.5.0_11\\lib\\ext
>>> java.vm.vendor=Sun Microsystems Inc.
>>> java.vm.version=1.5.0_11-b03
>>> java.class.path=D\:\\Data\\devtools\\eclipse_321\\startup.ja r
>>> java.vm.specification.vendor=Sun Microsystems Inc.
>>> java.runtime.version=1.5.0_11-b03
>>> java.vendor=Sun Microsystems Inc.
>>> java.specification.version=1.5
>>>
>>>
>>> Ed Merks wrote:
>>>> Eva,
>>>>
>>>> Can you tell which version of javac it's finding? Maybe it's
>>>> finding a javac from a 1.4 JDK...
>>>>
>>>>
>>>> Eva Allen wrote:
>>>>> I sent this earlier but got no responses. The problem might have
>>>>> been the subject, so I'm reposting with a different subject. If
>>>>> there's someplace else I should post this question, could someone
>>>>> please let me know?
>>>>>
>>>>> I am running Eclipse 3.2.1 on Windows 2000 to develop a Java project.
>>>>> The project files already existed so I created a "new" project in
>>>>> Eclipse and Eclipse (correctly) built the classpath. I specified that
>>>>> the JRE to be used for the project was jre1.5.0_10.
>>>>>
>>>>> The trouble comes when I try to get eclipse to use ant to run the
>>>>> build.xml file that the project contains. I'm using ant 1.6.5 (the
>>>>> one
>>>>> with eclipse). If I use ant to build the project from the command
>>>>> line,
>>>>> the project builds successfully. If I build individual class files
>>>>> from
>>>>> within eclipse, the class files build successfully. But if I double
>>>>> click on the build.xml file to have ant build the project from within
>>>>> eclipse, the build fails with Java 1.5 compatibility errors.
>>>>>
>>>>> For example:
>>>>>
>>>>> [javac] H:\dill\model\v2\bean\castor\GroupIdentifier.java:15:
>>>>> illegal \ character: \64
>>>>> [javac] @SuppressWarnings("serial")
>>>>>
>>>>>
>>>>> I thought maybe this was because eclipse itself was running with a
>>>>> java1.4 jre, so I explicitly pointed it at a jre1.5.0_11 on eclipse's
>>>>> command line (in the shortcut's properties area), but no joy--I still
>>>>> get the compatibility errors. I've set the compiler compliance
>>>>> level to
>>>>> 5.0 both globally and for this specific project. I've tried
>>>>> running ant
>>>>> as an external tool with the JRE set to run in the same JRE as the
>>>>> workspace, but that doesn't work, either.
>>>>>
>>>>> What am I missing?
>>
>>
Previous Topic:Drag table column into another control
Next Topic:Deploying WAR to Oracle AppServer 10g failed
Goto Forum:
  


Current Time: Thu Sep 26 11:11:32 GMT 2024

Powered by FUDForum. Page generated in 0.09376 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top