Re: GWT compilation error with JDK 11

2023-07-12 Thread Ying Jin
Thanks for the information. The compilation problem has already been resolved. thanks, Jenny On Wednesday, July 12, 2023 at 8:32:20 AM UTC-5 RobW wrote: > I can't comment on the Eclipse plugin side of things, because we don't use > those. But I can confirm that basic GWT 2.9/2.10 compilation

Re: GWT compilation error with JDK 11

2023-07-12 Thread 'RobW' via GWT Users
I can't comment on the Eclipse plugin side of things, because we don't use those. But I can confirm that basic GWT 2.9/2.10 compilation works fine under Java 11 - that's our main Java platform now. I do recall some migration notes in the GWT 2.9 or 2.10 release notes we had to take care over,

Re: GWT compilation error with JDK 11

2023-07-11 Thread Ying Jin
Ralph, thanks very much for your suggestion. I'll look into more of the approach to convert our gwt project to maven project. BTW, I've found the solution to make the GWT plugin work again in my laptop to compile the GWT project. I came across the following post when searching for the error

Re: GWT compilation error with JDK 11

2023-07-11 Thread Ralph Fiergolla
It should not be that hard actually: you probably have separated client, shared and server side classes following the standard package naming convention. That is, basically it will be sufficient to copy your source code to the according client/shared/server sub projects and you are done.

Re: GWT compilation error with JDK 11

2023-07-11 Thread Ying Jin
Ralph, Thanks for your suggestion. However, one of our GWT project in production was developed long time ago and has very big codebase. I'm not sure how hard to convert it to Maven oriented project. It seems that we have to do lots of code refactoring in order to separate client side and

Re: GWT compilation error with JDK 11

2023-07-10 Thread Ralph Fiergolla
Hi Jenny! With all these issues related to out-dated Eclipse plug-ins I would strongly suggest switching to the new GWT Maven plug-in instead. Follow the instructions https://github.com/tbroyer/gwt-maven-archetypes/ to create a project that you can easily import into the most recent Eclipse (or

Re: GWT compilation error with JDK 11

2023-07-10 Thread Ying Jin
Hi Colin, I posted this issue on the gwt plugin site below, but there is no reply yet. https://github.com/gwt-plugins/gwt-eclipse-plugin/issues/470 In addition, I've tried to install other version of Eclipse such as Eclipse 4.18 (2020-12) with a new workspace. After I installed GWT plugin 3

Re: GWT compilation error with JDK 11

2023-07-04 Thread Colin Alworth
If the class can't be found, something is wrong with your gwt-dev, or the gwt-dev isn't on the classpath, or more details from the error message will indicate why the Compiler class couldn't be loaded. Please file a bug with more details (logs, full error message, other details about

Re: GWT compilation error with JDK 11

2023-06-16 Thread Colin Alworth
GWT 2.9 should support running on Java 11, both running on JDK 11 and compiling Java 11 sources. Without other information, it sounds like there is a problem with your copy of gwt-dev.jar - the jar might be corrupt, or somehow not on your classpath? Can you verify that the jar is present and

GWT compilation error with JDK 11

2023-06-15 Thread Ying Jin
Hello, I tried to compile our GWT 2.9 project with JDK 11, but encountered the following error: Error: Could not find or load main class com.google.gwt.dev.Compiler Caused by: java.lang.ClassNotFoundException: com.google.gwt.dev.Compiler BTW, the Eclipse version is Version: 2020-06 (4.16.0).

Re: Gwt 2.8.2 compilation error

2019-07-30 Thread medasani kesavi
Understand that GWT only emulates a subset of Java classes in client-side code, and nothing from AWT or Swing. However ours is an existing GWT(2.4) and GXT(2.2.5) projects. It works well with old libraries. However when i try to migrate to GWT 2.8.2 I am facing these issues. Is there a major

Re: Gwt 2.8.2 compilation error

2019-07-30 Thread 'Jim Douglas' via GWT Users
GWT only emulates a subset of Java classes in client-side code, and nothing from AWT or Swing. http://www.gwtproject.org/doc/latest/RefJreEmulation.html On Tuesday, July 30, 2019 at 4:56:12 PM UTC-7, medasani kesavi wrote: > > > Can someone suggest if below is also for same situation > Point2D

Re: Gwt 2.8.2 compilation error

2019-07-30 Thread medasani kesavi
Can someone suggest if below is also for same situation Point2D is basic class from Java 8 however seems to be cannot be utilized in GWT. Anyone using MAPs functionality experiencing the same issue Line 23: Point2D cannot be resolved to a type [INFO] Line 30: Point2D cannot be resolved

Re: JSNI method compilation error with javascript regular expression

2019-07-30 Thread Thomas Broyer
Looking at https://github.com/gwtproject/gwt/blob/4d36d55d26aabc12e4429faf0603c539a54a13cd/dev/core/src/com/google/gwt/dev/js/rhino/TokenStream.java#L1251-L1265 which parses the regexp, it looks like you'd have to escape the '/' so it's not mistaken for the end of the regexp: from: var reg =

JSNI method compilation error with javascript regular expression

2019-07-29 Thread Qin Binghua
Hello everyone, To simplify the description of the problem, I use an official example to illustrate the problem。 1. Follow the GWT Getting Started to create a GWT project webAppCreator -out MyWebApp

Re: Gwt 2.8.2 compilation error

2019-07-21 Thread Frank Hossfeld
The compile tells you, that there is no source code for: org.apache.commons.beanutils.PropertyUtils Common problem is: * you did not inherit the module descriptor for the module containing PropertyUtils Just add the module using inherits in your module descriptor. But I am pretty sure,

Re: Gwt 2.8.2 compilation error

2019-07-21 Thread medasani kesavi
To my knowledge yes they are client compatible and whitelisted classes only Is there anything I should specifically check -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: Gwt 2.8.2 compilation error

2019-07-19 Thread Debasish Padhy
Could you confirm if all jars included have client compatible code only ? i.e. only whitelisted classes On Friday, July 19, 2019 at 11:08:27 AM UTC+5:30, medasani kesavi wrote: > > These jars as also included as a dependency with classifier as sources > > sources > provided > > > On Friday, 19

Re: Gwt 2.8.2 compilation error

2019-07-18 Thread medasani kesavi
These jars as also included as a dependency with classifier as sources sources provided On Friday, 19 July 2019 11:21:44 UTC+10, medasani kesavi wrote: > > I have some jars added as sources . 15 compilation errors are from the > files from these jars however there is actually no error in that

Re: Gwt 2.8.2 compilation error

2019-07-18 Thread medasani kesavi
I have some jars added as sources . 15 compilation errors are from the files from these jars however there is actually no error in that jar. xxx:jar:sources xxx:sources xxx:jar:sources xxx:jar:sources xxx:jar:sources xxx:jar:sources xxx:jar:sources All errors are like below No source code

Re: Gwt 2.8.2 compilation error

2019-07-18 Thread medasani kesavi
Hi Frank, Thanks for the reply I have set log level to trace but couldnt find much [INFO] Resolving annotation for javax.persistence.Id [INFO] Resolving annotation for javax.persistence.Column [INFO] Resolving annotation

Re: Gwt 2.8.2 compilation error

2019-07-18 Thread Frank Hossfeld
set logLevel=TRACE and fix the 15 compilation errors -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To view this

Gwt 2.8.2 compilation error

2019-07-18 Thread medasani kesavi
Hi , I am new to gWT. we are upgrading our application to GWT 2.8.2 and sencha GXT 4.0.3 My application is throwing below error . could you please assist [INFO] Compiling module au.gov.nsw.rta.cl2.CrashLink2 [INFO]Ignored 15 units with compilation errors in first pass. [INFO] Compile with

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Norbert Sándor
Thanks for the quick reply. Then I check the classpath of the Maven build again (although I've already done it and found no conflicts or duplications). -- Norbi On Tuesday, 12 April 2016 21:55:24 UTC+2, Juan Pablo Gardella wrote: > > 20-SNAPSHOT > > On Tue, 12 Apr 2016 at 14:48 Norbert Sándor

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Juan Pablo Gardella
20-SNAPSHOT On Tue, 12 Apr 2016 at 14:48 Norbert Sándor wrote: > Maybe someone can help which guava version is the "supported" for > gwt-2.8.0-snapshot? > > Thanks, > Norbi > > > On Sunday, 10 April 2016 16:06:01 UTC+2, Norbert Sándor wrote: >> >> Hello, >> >> I use

Re: compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-12 Thread Norbert Sándor
Maybe someone can help which guava version is the "supported" for gwt-2.8.0-snapshot? Thanks, Norbi On Sunday, 10 April 2016 16:06:01 UTC+2, Norbert Sándor wrote: > > Hello, > > I use the latest gwt-2.8.0-snapshot + guava-20.0-snapshot. > When I perform GWT compilation in Eclipse (by directly

compilation error with 2.8.0-SNAPSHOT (guava problem)

2016-04-10 Thread Norbert Sándor
Hello, I use the latest gwt-2.8.0-snapshot + guava-20.0-snapshot. When I perform GWT compilation in Eclipse (by directly calling the Compiler from a launch config) everything works as expected. But when I compile using gwt-maven-plugin, the following error is raised: [INFO][ERROR] Errors in

Re: Eclipse Luna SR1 w/ GPE 3.8.0 -- Compilation error on GWT 2.7 project, builds fine w/ Maven 3

2015-02-04 Thread Laurent D
Hi THomas and many thanks for your quick reply ! I wasn't aware you had your own plugin at GitHub and this was different from the one at Codehaus, thanks for all these indications! I'll definitely give your plugin a try, and will also try your archetype to test it with GWT 2.7! Regarding your

Re: Eclipse Luna SR1 w/ GPE 3.8.0 -- Compilation error on GWT 2.7 project, builds fine w/ Maven 3

2015-02-04 Thread Thomas Broyer
On Tuesday, February 3, 2015 at 7:53:11 PM UTC+1, Laurent D wrote: Hello there, I decided to give GWT 2.7 a quick test using Thomas Broyer's Multi project setup sample included as part of its gwt-maven-plugin source: (doc:

Eclipse Luna SR1 w/ GPE 3.8.0 -- Compilation error on GWT 2.7 project, builds fine w/ Maven 3

2015-02-04 Thread Laurent D
Hello there, I decided to give GWT 2.7 a quick test using Thomas Broyer's Multi project setup sample included as part of its gwt-maven-plugin source: (doc: http://mojo.codehaus.org/gwt-maven-plugin/user-guide/multiproject.html ) (source:

Re: gwt+guava compilation error:[ERROR] Line 761: MAX_SIZE cannot be resolved or is not a field

2014-01-22 Thread Thomas Broyer
On Wednesday, January 22, 2014 2:17:51 AM UTC+1, Alex Luya wrote: When compiling *guava 16.0*+gwt 2.6 RC4,I got this error: [ERROR] Errors in 'jar:file:/home/alex/workspace/DSC-Lib/lib/*guava-**gwt-15.0*.jar!/com/google/common/base/super/com/google/common/base/CharMatcher.java' So, is

Re: gwt+guava compilation error:[ERROR] Line 761: MAX_SIZE cannot be resolved or is not a field

2014-01-22 Thread Alex Luya
both in guava 15 and 16,by the way.by the way,it is a discussed bug:https://code.google.com/p/guava-libraries/issues/detail?id=1639 On Thursday, January 23, 2014 12:50:40 AM UTC+8, Thomas Broyer wrote: On Wednesday, January 22, 2014 2:17:51 AM UTC+1, Alex Luya wrote: When compiling *guava

Re: gwt+guava compilation error:[ERROR] Line 761: MAX_SIZE cannot be resolved or is not a field

2014-01-22 Thread Alex Luya
Both of them,by the way ,it is a confirmed bug:https://code.google.com/p/guava-libraries/issues/detail?id=1639 On 01/23/2014 12:50 AM, Thomas Broyer wrote: On Wednesday, January 22, 2014 2:17:51 AM UTC+1, Alex Luya wrote: |When compiling*guava 16.0*+gwt 2.6 RC4,I got this error:

gwt+guava compilation error:[ERROR] Line 761: MAX_SIZE cannot be resolved or is not a field

2014-01-21 Thread Alex Luya
When compiling guava 16.0+gwt 2.6 RC4,I got this error: [ERROR] Errors in 'jar:file:/home/alex/workspace/DSC-Lib/lib/guava-gwt-15.0.jar!/com/google/common/base/super/com/google/common/base/CharMatcher.java' [ERROR] Line 760: MAX_SIZE cannot be resolved or is not a field -- You received this

Google compilation error

2013-02-20 Thread hoda mashaly
when i used class at http://www.javapractices.com/topic/TopicAction.do?Id=82 in my web application i got after gwt compilation this Compiling module com.se.ParametricAutomation Validating newly compiled units Ignored 2 units with compilation errors in first pass. Compile with

Re: Google compilation error

2013-02-20 Thread Jens
Out of the box you can only use java classes that are emulated by GWT: https://developers.google.com/web-toolkit/doc/latest/RefJreEmulation AWT and Swing are not emulated. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

Re: Compilation Error with jar dependency

2012-03-07 Thread Vicky
Solved it. Need to include java src files in the jar along with the class files. FYI, for folks who might not know, GWT needs the java source (and not the byte code) to compile to javascript. On Mar 6, 9:38 pm, Vicky vicky...@gmail.com wrote: Hi I am using GWT 2.4. I have a use case where i

Compilation Error with jar dependency

2012-03-06 Thread Vicky
Hi I am using GWT 2.4. I have a use case where i need to use classes from a certain jar file. As part of the GWT project in eclipse i added that jar file as a classpath dependency. With this my java compilation went through successfully. However when i tried to do a GWT compile it failed with the

Re: Compilation Error

2011-11-22 Thread wangzheng422
use com.google.gwt.i18n.shared.DateTimeFormat instead. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/vxteFPPZJ2kJ. To post to this group, send

Re: Maven compilation error

2011-11-06 Thread Anton Grinenko
On 4 ноя, 19:56, Hilco Wijbenga hilco.wijbe...@gmail.com wrote: On 4 November 2011 06:29, Anton Grinenko anton.grine...@gmail.com wrote: I use gwt 2.4 and maven 3.0.1 with  gwt-maven-plugin 2.4.0 in my application. During compilation I got an error: snip/ The most strange thing that

Maven compilation error

2011-11-04 Thread Anton Grinenko
Greetings, I use gwt 2.4 and maven 3.0.1 with gwt-maven-plugin 2.4.0 in my application. During compilation I got an error: [INFO] [INFO] --- gwt-maven-plugin:2.4.0:compile (default) @ admin --- [INFO] auto discovered modules [ua.ardas.admin.Admin] [INFO] Compiling module ua.ardas.admin.Admin

Re: Maven compilation error

2011-11-04 Thread Hilco Wijbenga
On 4 November 2011 06:29, Anton Grinenko anton.grine...@gmail.com wrote: I use gwt 2.4 and maven 3.0.1 with  gwt-maven-plugin 2.4.0 in my application. During compilation I got an error: snip/ The most strange thing that this error occurs not always. Sometimes maven build my project

[gwt-contrib] Prevent an AutoBean property named property from causing a compilation error. (issue1505804)

2011-07-29 Thread bobv
Reviewers: rjrjr, Message: Review requested. Description: Prevent an AutoBean property named property from causing a compilation error. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/1505804/ Affected files: M user/src/com/google/web/bindery

[gwt-contrib] Re: Prevent an AutoBean property named property from causing a compilation error. (issue1505804)

2011-07-29 Thread rjrjr
LGTM On 2011/07/29 16:59:28, bobv wrote: Review requested. http://gwt-code-reviews.appspot.com/1505804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Prevent an AutoBean property named property from causing a compilation error. (issue1505804)

2011-07-29 Thread rjrjr
http://gwt-code-reviews.appspot.com/1505804/diff/1/user/src/com/google/web/bindery/autobean/gwt/rebind/AutoBeanFactoryGenerator.java File user/src/com/google/web/bindery/autobean/gwt/rebind/AutoBeanFactoryGenerator.java (right):

Re: I am using xsrf and I am getting Compilation error ?

2011-05-31 Thread suersh babu
This issue occured because of no disk space, so I delete the temp files, now this module is compiling. On Mon, May 30, 2011 at 10:51 AM, suersh babu sureshgbab...@gmail.comwrote: Hi, I am using GWT 2.3 with MVP frame work, also I am using xsrf in my module when I try to compile my module I

I am using xsrf and I get Compilation error ?

2011-05-29 Thread suersh babu
Hi, I am using GWT 2.3 with mvp frame work, also I am using xsrf -- Regards Suresh Babu G http://www.accountingguru.in/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

I am using xsrf and I am getting Compilation error ?

2011-05-29 Thread suersh babu
Hi, I am using GWT 2.3 with MVP frame work, also I am using xsrf in my module when I try to compile my module I am getting following error [ERROR] Unexpected java.lang.ExceptionInInitializerError at com.google.gwt.dev.javac.CompiledClass.clinit(CompiledClass.java:36) at

Re: I18N compilation error

2011-01-31 Thread nacho
Do you have your resource properties file? *Begin by creating a default properties file called MyConstants.propertiesin your GWT project. You can place the file anywhere in your module's source path, but the .properties file and corresponding interface must be in the same package. It's fine to

Re: I18N compilation error

2011-01-31 Thread bindu
Thanks for the reply . My problem got resolved. The mistake i did is giving different name for the resource properties file and interface. On 1/31/2011 6:41 PM, nacho wrote: Do you have your resource properties file? /Begin by creating a default properties file called

I18N compilation error

2011-01-29 Thread bindu
Hi All, Pls help me with the following error. iam using gwt 2.0 and also tested with gwt 2.1 [DEBUG] [logindemo] - Rebinding org.i18n.client.MyConstants [DEBUG] [logindemo] - Invoking generator com.google.gwt.i18n.rebind.LocalizableGenerator [TRACE] [logindemo] - Processing

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-23 Thread Coelho
) and builds OK ( BUILD SUCCESS) the mvn package works - Original Message - From: Frank Bølviken frank.bolvi...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Wednesday, December 22, 2010 7:22 PM Subject: Re: gwt-maven-plugin 2.1.0-1 compilation error I just

gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Frank Bølviken
Hi, I dont know if there is anyting I have missed. But I'm trying to create a simple GWT project with the new gwt-maven-plugin. I run the following command: mvn archetype:generate -DarchetypeRepository=repo1.maven.org -DarchetypeGroupId=org.codehaus.mojo -DarchetypeArtifactId=gwt-maven-plugin

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Metronome / Basic
2.1.0-1 compilation error Hi, I dont know if there is anyting I have missed. But I'm trying to create a simple GWT project with the new gwt-maven-plugin. I run the following command: mvn archetype:generate -DarchetypeRepository=repo1.maven.org -DarchetypeGroupId=org.codehaus.mojo

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Frank Bølviken
: gwt-maven-plugin 2.1.0-1 compilation error Hi, I dont know if there is anyting I have missed. But I'm trying to create a simple GWT project with the new gwt-maven-plugin. I run the following command: mvn archetype:generate -DarchetypeRepository=repo1.maven.org -DarchetypeGroupId

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Frank Bølviken
- Original Message - From: Frank B lviken frank.bolvi...@gmail.com To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Wednesday, December 22, 2010 5:33 PM Subject: gwt-maven-plugin 2.1.0-1 compilation error Hi, I dont know if there is anyting I have missed

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Coelho
To: Google Web Toolkit google-web-toolkit@googlegroups.com Sent: Wednesday, December 22, 2010 6:13 PM Subject: Re: gwt-maven-plugin 2.1.0-1 compilation error I thought it was supposed to be simpler with the new gwt-maven-plugin 2.1.0-1 with eclipse etc.. :P On Dec 22, 5:57 pm, Frank Bølviken

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Coelho
60 and 276 Patrick - Original Message - From: Coelho metronome.ba...@worldonline.fr To: google-web-toolkit@googlegroups.com Sent: Wednesday, December 22, 2010 6:38 PM Subject: Re: gwt-maven-plugin 2.1.0-1 compilation error though I don't know why but I 'v used this command with succes

Re: gwt-maven-plugin 2.1.0-1 compilation error

2010-12-22 Thread Frank Bølviken
Patrick - Original Message - From: Coelho metronome.ba...@worldonline.fr To: google-web-toolkit@googlegroups.com Sent: Wednesday, December 22, 2010 6:38 PM Subject: Re: gwt-maven-plugin 2.1.0-1 compilation error though I don't know why but I 'v used this command with succes

Re: gwt 2.1.0 m3 compilation error

2010-09-01 Thread Rokesh
to redeploy it on appengine and I get a compilation error (without stacktrace). The session data is like this eclipse.buildId=unknown java.version=1.6.0_20 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US Framework arguments:  -product

Re: gwt 2.1.0 m3 compilation error

2010-08-31 Thread chiappone
to redeploy it on appengine and I get a compilation error (without stacktrace). The session data is like this eclipse.buildId=unknown java.version=1.6.0_20 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US Framework arguments:  -product

gwt 2.1.0 m3 compilation error

2010-08-25 Thread Rokesh
changes. The thing is, I got this corrected and now I'm trying to redeploy it on appengine and I get a compilation error (without stacktrace). The session data is like this eclipse.buildId=unknown java.version=1.6.0_20 java.vendor=Apple Inc. BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US

Re: gwt 2.1.0 m3 compilation error

2010-08-25 Thread Travis Camechis
in order to get rid of the compilation errors: -ListDataProvider and ListViewAdapter - SimplePager (not a generic anymore) and some other API changes. The thing is, I got this corrected and now I'm trying to redeploy it on appengine and I get a compilation error (without stacktrace

Re: Compilation Error

2010-04-22 Thread rxm0203
I am getting following error in GWT development console when I try to use Run Configuration from Eclipse. 00:00:20.360 [TRACE] Finding entry point classes 00:00:20.360 [ERROR] Unable to find type 'org.drools.guvnor.client.JBRMSEntryPoint' 00:00:20.407 [ERROR] Hint: Check

Re: Compilation Error

2010-04-21 Thread rxm0203
Here is the update. I removed the mentioned jar file from Drools- Guvnor's dependent projects class path. Now, I am able to compile successfully. Thanks for your help. On Apr 20, 6:51 pm, rxm0203 rxm0...@gmail.com wrote: I removed the mentioned jar file. I am still getting samecompilationerror.

Re: Compilation Error

2010-04-21 Thread Rajeev Dayal
Great, glad it is working. On Wed, Apr 21, 2010 at 9:41 AM, rxm0203 rxm0...@gmail.com wrote: Here is the update. I removed the mentioned jar file from Drools- Guvnor's dependent projects class path. Now, I am able to compile successfully. Thanks for your help. On Apr 20, 6:51 pm, rxm0203

Re: Compilation Error

2010-04-20 Thread Rajeev Dayal
These two entries look to be problematic: classpathentry kind=var path=M2_REPO/org/apache/jasper/ springsource/ com.springsource.org.apache.jasper.org.eclipse.jdt.springsource/ 6.0.20.S2-r5956/ com.springsource.org.apache.jasper.org.eclipse.jdt.springsource-6.0.20.S2- r5956.jar/ Are these jars

Re: Compilation Error

2010-04-20 Thread rxm0203
I removed the mentioned jar file. I am still getting same compilation error. Which is second entry should I remove? On Apr 20, 12:08 pm, Rajeev Dayal rda...@google.com wrote: These two entries look to be problematic:   classpathentry kind=var path=M2_REPO/org/apache/jasper/ springsource

Re: Compilation Error

2010-04-19 Thread rxm0203
Hi Rajeev, I don't see JDT appearing on the build path. Let me know your suggestions for the next step. Thanks, Rahul On Apr 16, 10:28 am, Rajeev Dayal rda...@google.com wrote: Hm, I'm wondering if there is some sort of issue with multiple versions of JDT appearing on the classpath. Does

Re: Compilation Error

2010-04-19 Thread Rajeev Dayal
Can you post the contents of your .classpath file? On Mon, Apr 19, 2010 at 11:42 AM, rxm0203 rxm0...@gmail.com wrote: Hi Rajeev, I don't see JDT appearing on the build path. Let me know your suggestions for the next step. Thanks, Rahul On Apr 16, 10:28 am, Rajeev Dayal

Re: Compilation Error

2010-04-19 Thread rxm0203
Here are the contents of .classpath file. ?xml version=1.0 encoding=UTF-8? classpath classpathentry kind=src output=target/test-classes path=src/ test/java/ classpathentry excluding=**/*.java including=** kind=src output=target/test-classes path=src/test/resources/

Re: Compilation Error

2010-04-16 Thread Rajeev Dayal
Hm, I'm wondering if there is some sort of issue with multiple versions of JDT appearing on the classpath. Does Drools utilize JDT? What does your build path look like? On Thu, Apr 15, 2010 at 5:00 PM, rxm0203 rxm0...@gmail.com wrote: I hope this is the correct mailing list for the question. We

Re: ClientBundle compilation error

2010-02-09 Thread RickD
I too am experiencing this exact problem. I have successfully used ImageResources for nearly all of my images, but when I added just one more image it breaks!? The problem seems to be related to the number of images and not the content of the image. I am anxiously awaiting a fix, and in the

Re: ClientBundle compilation error

2010-01-31 Thread jim n
ditto this code should work as an imagebundle, i get a compilation error when i follow the migration instructions for ImageBundle to ClientBundle ImageResources, and ClientBundle really solves a problem i have. On Jan 17, 8:11 am, Arunava r.arun...@gmail.com wrote: I am getting an error while

ClientBundle compilation error

2010-01-17 Thread Arunava
I am getting an error while using ClientBundle in my project. I have used Eclipse to generate the ClientBundle. Also added the following line in Resource interface - 1. public static final Resources INSTANCE = GWT.create (Resources.class); The code that uses ClientBundle - 2. this.add(new

Re: Compilation error

2010-01-08 Thread Raman
Looks like I have finally solved the problem. The case was something like this. I am using ExtGWT which has a class TreePanel with an inner class TreeNode, which looks like below: public class TreePanelM extends ModelData { - class TreeNode {

Re: Compilation error

2010-01-08 Thread dangle
I rebuilt the toolkit from source and narrowed down the issue a bit myself, definitely seems to have something to do with inner classes being defined inside generic classes. Unfortunately my codebase is pretty big and we do this in multiple spots, so I'm still trying to get around it. Will see

Re: Compilation error

2010-01-08 Thread dangle
As a temporary workaround since I've already burned a whole day on this one, I just refactored several inner classes to the top level. It just compiled. I think my case may have actually done something similar, only where (to use Raman's example) it actually defined TreePanel.TreeNode as part of

Re: Compilation error

2010-01-07 Thread dangle
I just got the same error on one project, although I've successfully been able to compile others. No idea why yet... anyone have any ideas? On Jan 7, 12:28 am, Raman rama...@gmail.com wrote: I just upgraded to GWT 2.0. But when I compile my source code with com.google.gwt.dev.Compiler, I get

Re: Compilation error

2010-01-07 Thread Chris Ramsdale
Would either of you be able to narrow it down to a smaller repro case? - Chris On Thu, Jan 7, 2010 at 11:49 AM, dangle dancalv...@gmail.com wrote: I just got the same error on one project, although I've successfully been able to compile others. No idea why yet... anyone have any ideas?

Compilation error

2010-01-06 Thread Raman
I just upgraded to GWT 2.0. But when I compile my source code with com.google.gwt.dev.Compiler, I get a NullPointerException as below. What am I doing wrong? [ERROR] Unexpected java.lang.NullPointerException at com.google.gwt.dev.javac.asm.ResolveTypeSignature.mergeTypeParamBound

Passing javax.persistence.Entity pojo's to the client - Compilation Error

2009-10-21 Thread reyaron
Hi How can I pass to the RemoteService an Entity of JPA? If I do so I get the following error during the GWT-compile: No source code is available for type javax.persistence.Persistence; did you forget to inherit a required module? Application Architecture: Hibernate 3 with JPA spec in some

Compilation Error

2009-09-25 Thread Raul
Why I am getting this while trying to compile... [ERROR] Line 3: The import java.text cannot be resolved [ERROR] Line 4: The import java.text cannot be resolved [ERROR] Line 5: The import java.text cannot be resolved [ERROR] Line 24: DateFormat cannot be resolved to a type [ERROR] Line 24:

Re: Compilation Error

2009-09-25 Thread Adam T
u can not use these classes in GWT - client side, read the doc for the allowed class, more specifically, this is what you are allowed to use on GWT client side: http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html //A --~--~-~--~~~---~--~~ You

GWT compilation error with boolean operator

2009-08-03 Thread Thierry Boileau
Hello all, I get a the following compilation exception: java.lang.ClassCastException: com.google.gwt.dev.jjs.ast.JPrimitiveType at com.google.gwt.dev.jjs.impl.EqualityNormalizer $BreakupAssignOpsVisitor.endVisit(EqualityNormalizer.java:86) at

Compilation Error

2009-04-28 Thread lesho
Compiling module x.xx.X [ERROR] Errors in 'jar:file:/C:/Documents%20and%20Settings/l3sh0/ Desktop/eclipse/plugins/ com.google.gwt.eclipse.sdkbundle.win32_1.6.4.v200904062334/gwt- windows-1.6.4/gwt-user.jar!/com/google/gwt/user/client/ui/ DisclosurePanel.java' [ERROR] Internal compiler

Compilation error: java.lang.NoSuchFieldError: numTypes

2009-01-10 Thread Fred Janon
I am quite stunned, could not find any reference to that error: [ERROR] Errors in 'jar:file:/C:/GWT/gwt-user.jar!/com/google/gwt/user/client/ui/MenuBar.java' [ERROR] Missing message: compilation_internalError in: org.eclipse.jdt.internal.compiler.messages java.lang.NoSuchFieldError: numTypes

Re: gwt compilation error with XmlSeeAlso and XmlElement annotation.

2008-12-06 Thread Alan
Hi, Jason. Does commenting out @XmlSeeAlso affected on your xml binding? I'm not jaxb guru, but I think it can brake marshalling of that class. On Oct 9, 9:01 am, jason [EMAIL PROTECTED] wrote:  The real problem is the @XmlSeeAlso.    I commented it out from Paragarph.class.  Gwt still report

Re: gwt compilation error with XmlSeeAlso and XmlElement annotation.

2008-12-06 Thread Alan
I'm sorry for multiple posts in row. I've made a mistake in previous post: brake instead of break. According to javadocs on @XmlSeeAlso commenting it out can break instantiation of JAXBContext but it could be easily worked around and doesn't affects my project. I am using list of all

Re: gwt compilation error with XmlSeeAlso and XmlElement annotation.

2008-10-09 Thread jason
The real problem is the @XmlSeeAlso. I commented it out from Paragarph.class. Gwt still report XmlElement eror for other classes. But the gwt compilation finished successfully. I hope commentting out @XmlSeeAlso does not effect my xml binding. -jason

gwt compilation error with XmlSeeAlso and XmlElement annotation.

2008-10-08 Thread jason
I use gwt 1.5.2 on Window. I have a couple of classes generated by JAXB. These classes are used a client-side. During compliation, I got some error on annotation process. It seemed that the GWT tried to process class refereed in annotation. Here is the error dump Processing types in compilation

GWT compilation Error

2008-09-14 Thread [EMAIL PROTECTED]
Hi group, i am new to this tool. i need help from any one of you. when i try to run my build i get the following error. any help to resolve this greatly accepted. [jar] Building jar: C:\Users\Myproject\EMR20-PT03- [EMAIL PROTECTED] \lib\EMR20-Base.jar gwt-compile: [java] Loading module

Re: Compilation error after 1.5rc2 upgrade

2008-08-26 Thread Folke
On Aug 26, 11:37 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: On Aug 26, 11:15 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: http://code.google.com/p/google-web-toolkit/source/detail?r=3061 Thanks for the quick reply. I guess I'd rather see compilation errors, but why not just implement