Re: GWT source compile error

2019-06-28 Thread Jens
Hmmm maybe the ANT build holds the gwt-dev.jar open and thus Windows forbids overwriting the file with gwt-dev-merged.jar . I guess you need to either try changing the build file to make is work on Windows or use a Linux VM for now. -- J. -- You received this message because you are

GWT source compile error

2019-06-28 Thread Chandula Harasgama
Hi. I'm trying to compile the current master of GWT from source but keep getting the following error. I'm on JDK 8 on a windows 7 PC. The commands I tried were: ant, ant clean dist-dev, ant clean elemental dist-dev. merge_codeserver: [echo] Merge gwt-dev.jar and gwt-codeserver.jar

GWT HEAD-SNAPSHOT compile error

2018-08-09 Thread Hristo Stoyanov
Trying to compile my GWT project with the latest HEAD-SNAPSHOT version and getting this error: Unable to load annotation processing manager org.eclipse.jdt.internal.compiler.apt.dispatch.BatchAnnotationProcessorManager from classpath. What Maven/Gradle dependecie do I need? -- You received

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-24 Thread Ignacio Baca Moreno-Torres
I sometimes, when I'm a bit desperate, I debug the project, find some classes for the conflicting code using the "Thread.currentThread().getContextClassLoader().loadClass(...)", and use the variable inspector to find the class loader and the actual file that has been used to load the class.

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-24 Thread JonL
We have seen similar issues with this when we were experimenting with some projects and upgrading to 2.8.2. The things to double check are: 1. That there are no duplicate jars from different versions of GWT, as mentions by Thomas Broyer. 2. Delete any GWT generated folder such as the

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-23 Thread Rachel
That could definitely be the issue. Unfortunately, when we move back to a previous version of the project we still get the same error so we think it might be something with the eclipse environment and are going to try a new eclipse install. On Monday, May 14, 2018 at 12:34:20 PM UTC-4, Thomas

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-14 Thread Thomas Broyer
Could one of your dependencies possibly "shadow" its own version of ImageResourceGenerator that had been compiled against GWT 2.8? You'd have to revert to an older version of that dependency then. On Monday, May 14, 2018 at 3:37:34 PM UTC+2, Rachel wrote: > > Thank you for responding. I'm

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-14 Thread Rachel
Thank you for responding. I'm looking at the build path and both gwt-user and gwt-dev jar files are from 2.7. Is there somewhere else I should look? On Monday, May 14, 2018 at 9:16:18 AM UTC-4, Thomas Broyer wrote: > > > > On Monday, May 14, 2018 at 3:06:09 PM UTC+2, Rachel wrote: >> >> We have

Re: Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-14 Thread Thomas Broyer
On Monday, May 14, 2018 at 3:06:09 PM UTC+2, Rachel wrote: > > We have to move our project back to GWT 2.7 due to some java 1.8 issues. > I've checked all my jar files to make sure they are 2.7 and no duplicate > jars in the build path but am getting errors when I try to compile with Ant. >

Advice needed - compile error while moving back to GWT 2.7 from 2.8.2

2018-05-14 Thread Rachel
We have to move our project back to GWT 2.7 due to some java 1.8 issues. I've checked all my jar files to make sure they are 2.7 and no duplicate jars in the build path but am getting errors when I try to compile with Ant. Any suggestions would be greatly appreciated. Thank you. *prepareGWT*:

Re: Advice Needed - moving to GWT 2.8.2 from 2.7 compile error

2018-05-07 Thread Rachel
Thank you for the suggestion. I thought I had changed all the jar files but I re-configured the build path and that seems to have solved the error. On Friday, May 4, 2018 at 1:43:49 PM UTC-4, Paul Robinson wrote: > > Check to see if you're mixing GWT versions. Maybe more than one GWT jar > file

Re: Advice Needed - moving to GWT 2.8.2 from 2.7 compile error

2018-05-04 Thread Paul Robinson
Check to see if you're mixing GWT versions. Maybe more than one GWT jar file in your path. Paul On Fri, 4 May 2018, 16:09 Rachel, wrote: > I couldn't find another post with this same error but if there is one I > apologize. > We are moving a project from GWT 2.7 to GWT

Advice Needed - moving to GWT 2.8.2 from 2.7 compile error

2018-05-04 Thread Rachel
I couldn't find another post with this same error but if there is one I apologize. We are moving a project from GWT 2.7 to GWT 2.8.2 but when we try to compile with Ant we are getting the following error and we haven't found a way to resolve it. Any suggestions would be appreciated.

Re: gwt compile error "No source code" using gwt-lib with transient sources

2016-11-28 Thread Michael Budnick
It's my mistake, I had a typing error in the path with the lib-shared classes. So [ERROR] Line 8: No source code is available was correct because the java file was on an other location then the packagename sayes. -- You received this message because you are subscribed to the Google Groups "GWT

gwt compile error "No source code" using gwt-lib with transient sources

2016-11-25 Thread Michael Budnick
My current maven project (named refBuecherWelt) is based on 3 submodule (shared,server,client) layout from the gwt-maven-archetypes [1]. The refBuecherWelt-client submodule (a gwt-app) depend on an other lib (named universalclientLib) which is build in an independend maven project. When I

Re: compile error with PlaceSearchRequest

2016-05-05 Thread 'Michael Esser' via GWT Users
Am Donnerstag, 5. Mai 2016 23:52:16 UTC+2 schrieb Michael Esser: > > Hi there, > I want to use PlaceSearchRequest from gwt-maps-api-3.10.0. > If I run the GWT compiler I got the following errors: > > Compile with -strict or with -logLevel set to TRACE or DEBUG to see all > errors. >[ERROR]

compile error with PlaceSearchRequest

2016-05-05 Thread 'Michael Esser' via GWT Users
Hi there, I want to use PlaceSearchRequest from gwt-maps-api-3.10.0. If I run the GWT compiler I got the following errors: Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors. [ERROR] Errors in 'com/google/gwt/maps/client/placeslib/PlaceSearchRequest.java'

Re: JsInterop compile error

2015-11-08 Thread Elias
Hi Cristian, Try: public static native String[] getOwnPropertyNames(Object obj); since List is a Java class that has not a JS type correspondence. Regards, Elias -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group

JsInterop compile error

2015-11-07 Thread Cristian Rinaldi
Hello community: I'm using GWT 2.8-SNAPSHOT and new annotations JsInterop. I have a very simple class, but gives the error in compilation time. @JsType(isNative = true, name = "Object", namespace = JsPackage.GLOBAL) public class JsObject { public static native List

Re: GSS: Variable inside CSS 3 calc procudes compile error

2015-02-07 Thread Christian Walczyk
Created a new issue https://code.google.com/p/google-web-toolkit/issues/detail?id=9118 -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

GSS: Variable inside CSS 3 calc procudes compile error

2015-02-06 Thread Julien Dramaix
That should work. Only variable that require runtime evaluation don't work. Could you open an issue? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to

GSS: Variable inside CSS 3 calc procudes compile error

2015-02-06 Thread Christian Walczyk
Hello, I'm using GWT 2.7 with the experimental GSS support turned on and most of the GSS features are working fine as expected. One thing which is not working for me is the CSS3 calc() together with variables. This gss source code part of my UiBinder file leads to a compile error

[gwt-contrib] Re: Compile error with latest gwt (from trunk)

2015-02-03 Thread Stefano Pulze
I'm sure that have the latest trunk and tools folder. This is my build path, and I've only one GWT-SDK https://lh3.googleusercontent.com/-vPtpZBUWapA/VNDccAEOJHI/A6E/ozOOXs_PPCU/s1600/Cattura.PNG -- You received this message because you are subscribed to the Google Groups GWT

Re: [gwt-contrib] Compile error with latest gwt (from trunk)

2015-02-03 Thread 'Daniel Kurka' via GWT Contributors
Are you sure that there is not another version of GWT somewhere in the classpath? On Tue, Feb 3, 2015 at 12:09 PM, Stefano Pulze stefano.pulz...@gmail.com wrote: Hi folks, Today I've updated and build latest gwt from trunk. I've tried to compile my project but the compilar said: Caused by:

[gwt-contrib] Re: Compile error with latest gwt (from trunk)

2015-02-03 Thread Stefano Pulze
OK guys, I've run: ant clean ant build and now work like a charm. Thanks all. -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails from it, send an email to

[gwt-contrib] Re: Compile error with latest gwt (from trunk)

2015-02-03 Thread Lars
Did you update the (gwt)tools too? -- You received this message because you are subscribed to the Google Groups GWT Contributors group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit-contributors+unsubscr...@googlegroups.com. To view this

[gwt-contrib] Re: Compile error with latest gwt (from trunk)

2015-02-03 Thread Jens
On 15.11.2014 a commit from Ray changed JThisRef.getClassType() to return a JDeclaredType and not a JClassType. Your GWT searches for this method with return type JClassType. Seems like you have not correctly updated your dependencies and an old GWT is on class path as well. -- J. -- You

[gwt-contrib] Compile error with latest gwt (from trunk)

2015-02-03 Thread Stefano Pulze
Hi folks, Today I've updated and build latest gwt from trunk. I've tried to compile my project but the compilar said: Caused by: java.lang.NoSuchMethodError: com.google.gwt.dev.jjs.ast.JThisRef. getClassType()Lcom/google/gwt/dev/jjs/ast/JClassType; at

SDM/UIBinder phantom compile error won't go away, can't build app

2014-05-01 Thread Michael Brown
Color me stoopid but... I've got a phantom compile error that shows up building with SDM (and prevents me from launching SDM) but not otherwise. No complaints from Eclipse 4.3. Cleaning Eclipse project and relaunching Eclipse doesn't help, nor does restarting Firefox ESR 24.4 or even rebooting

Re: SDM/UIBinder phantom compile error won't go away, can't build app

2014-05-01 Thread Thomas Broyer
Could be the unit-cache. Defaults to a .gwt-unitCache directory sibling to your war directory. On Wednesday, April 30, 2014 11:27:34 PM UTC+2, Michael Brown wrote: Color me stoopid but... I've got a phantom compile error that shows up building with SDM (and prevents me from launching SDM

Re: Compile Error after switching to 2.6 in first compile run

2014-02-19 Thread Jan Thewes
I understand your points BUT one thing. If I compile my modules alone I don't get any compile error. So compiling every single module works. It has to do something with the order and caches. I just can't nail it down. We're running a real real big GWT application here. I'm close to go back

Re: Compile Error after switching to 2.6 in first compile run

2014-02-19 Thread Boris Lenzinger
understand your points BUT one thing. If I compile my modules alone I don't get any compile error. So compiling every single module works. It has to do something with the order and caches. I just can't nail it down. We're running a real real big GWT application here. I'm close to go back

Re: Compile Error after switching to 2.6 in first compile run

2014-02-14 Thread Jan Thewes
Well, the order has to do something with the failing compile. But this is new with GWT 2.6. Before our compilation always worked. And we don't have changed our code since the change to 2.6. Still need ideas what this can be. In my opinion this is a GWT internal bug. Am Dienstag, 11. Februar

Re: Compile Error after switching to 2.6 in first compile run

2014-02-14 Thread Boris Lenzinger
There is this error in your stack : [ERROR] Errors in 'file:/Users/xgadjth/sandboxes/b21_gwt-03.03.00/render/source/de/gad/gfw/web/gui/render/toolbar/ToolBar.java' [ERROR] Line 116: The method addStyleName(String) is undefined for the type AutoHidePreventMenu [ERROR] Line 123: The

Re: Compile Error after switching to 2.6 in first compile run

2014-02-11 Thread Jan Thewes
Ok any further information. We're trying to compile 5 modules at a time. That fails When compiling all the 5 modules alone. It works! We also have a merge-module. These combines 4 of our 5 modules. This merge module compiles without any error, too! So this is a real strange behavior... Am

Re: Compile Error after switching to 2.6 in first compile run

2014-02-11 Thread Boris Lenzinger
I would say that the order of compilation is not the one you expect. The error Line 23: No source code is available for type de.gad.gfw.web.navigator.menu.model.MenuElement; did you forget to inherit a required module? Errors in

Re: GWT Maven Install compile error java.lang.NullPointerException at com.google.gwt.dev.util.DiskCache.transferToStream(DiskCache.java:187)

2014-01-20 Thread Mihkel Lukats
Jens right. I'll just post the full configuration: !-- - GWT Maven Plugin -- plugin groupIdorg.codehaus.mojo/groupId artifactIdgwt-maven-plugin/artifactId version${gwtVersion}/version executions

Re: GWT Maven Install compile error java.lang.NullPointerException at com.google.gwt.dev.util.DiskCache.transferToStream(DiskCache.java:187)

2014-01-07 Thread luis . sepulveda
I am having the same problem. Did you get to solve it? On Tuesday, December 3, 2013 9:05:08 PM UTC+1, umesh shaw wrote: I am having this error. tried all the option to delete gwt cache, temp folder, etc from online. but still no luck Please help.. [ERROR] Exception in thread

Re: GWT Maven Install compile error java.lang.NullPointerException at com.google.gwt.dev.util.DiskCache.transferToStream(DiskCache.java:187)

2014-01-07 Thread Jens
Try gwtSdkFirstInClasspathtrue/gwtSdkFirstInClasspath in your gwt-maven-plugin configuration. Maybe you have libraries in your project that interference with embedded libraries in gwt-dev.jar. -- J. -- You received this message because you are subscribed to the Google Groups Google Web

GWT Maven Install compile error java.lang.NullPointerException at com.google.gwt.dev.util.DiskCache.transferToStream(DiskCache.java:187)

2013-12-04 Thread umesh shaw
I am having this error. tried all the option to delete gwt cache, temp folder, etc from online. but still no luck Please help.. [ERROR] Exception in thread pool-1-thread-323 *java.lang.NullPointerException* [ERROR] at com.google.gwt.dev.util.DiskCache.transferToStream(

GWT Compile Error - Did I forget to inherit a required module?

2013-03-01 Thread Manuel
Hi everyone, I implemented session-per-request from herehttp://code.google.com/p/google-guice/wiki/JPA#Web_Environments_%28session-per-http-request%29 . Since then I got +7 Ignored compilation errors. Does anyone know how to fix that ? I tried to add the following in my gwt.xml, but that

Re: GWT Compile Error - Did I forget to inherit a required module?

2013-03-01 Thread Manuel
Sorry for the noise. I had to put my server classes in the server folder instead of shared. That fixed my problems. Regards, Manuel Am Samstag, 2. März 2013 00:49:10 UTC+1 schrieb Manuel: Hi everyone, I implemented session-per-request from

Re: Update of Eclipse Plug In Causes Compile Error

2013-01-11 Thread Artem Grinblat
I think removing the old GWT SDK entries from Preferences/Google/Web Toolkit helped. вторник, 23 августа 2011 г., 21:15:06 UTC+4 пользователь Lenny написал: I just updated the GWT plug in from within Eclipse and am now getting the following compile error when I try to compile my project

Re: [gwt-contrib] Re: Compile error after moving to 2.5

2013-01-04 Thread dflorey
No, the only workaround for me is to stick with 2.4 :-( On Monday, December 17, 2012 10:25:25 PM UTC+1, Brent Ryan wrote: I'm seeing this same compile error when going from 2.4 to 2.5. Any workaround for this yet? On Wednesday, November 7, 2012 12:24:29 PM UTC-5, dflorey wrote: Sure

Re: [gwt-contrib] Re: Compile error after moving to 2.5

2012-12-18 Thread Brent Ryan
I'm seeing this same compile error when going from 2.4 to 2.5. Any workaround for this yet? On Wednesday, November 7, 2012 12:24:29 PM UTC-5, dflorey wrote: Sure... I'm just not sure if it helps. My app is fairly complex and includes a number of modules: ?xml version=1.0 encoding=UTF-8

Re: [gwt-contrib] Re: Compile error after moving to 2.5

2012-11-07 Thread dflorey
Sure... I'm just not sure if it helps. My app is fairly complex and includes a number of modules: ?xml version=1.0 encoding=UTF-8? module rename-to='ucm' inherits name='com.google.gwt.user.User' / inherits name=com.google.gwt.i18n.I18N / inherits name='com.floreysoft.appcore.AppCore' / inherits

Re: XmlAdapter compile error

2012-06-22 Thread Shawn Johnson
Andrea - thank you so much. I finally get it. Just to recap. I was using adapter classes, and at one point during a recent project re-org, I think I inadvertently moved them from server to shared package. I moved only the adapter classes back into the server package. Viola! - GWT-Compile is

Re: XmlAdapter compile error

2012-06-21 Thread shawnjohnson
Thank for the reply. I'm only marshalling/unmarshalling on the server-side - so does that mean I should move those classes into a server package? That's even if the annotation is in the shared bean? Yes, still using GWT-RPC. Is the workaround as simple as this? My.gwt.xml (before) module

Re: XmlAdapter compile error

2012-06-21 Thread shawnjohnson
Sorry, I didn't mean to post that reply quite that way (hit some new keyboard combo)... My.gwt.xml (before) module source path=common/ /module (after) module source path=common exclude name=MyXmlAdapter1.java / exclude name=MyXmlAdapter2.java / exclude name=MyXmlAdapter2.java /

Re: XmlAdapter compile error

2012-06-21 Thread Andrea Boscolo
If your classes are simply annotated with JAXB annotations, you should follow http://code.google.com/p/google-web-toolkit/issues/detail?id=4020 (comment 10) for the workaround, and keep them in the 'shared' package, so they can communicate and used with both sides (and you don't violate DRY).

Re: XmlAdapter compile error

2012-06-20 Thread shawnjohnson
I am having this issue as well. The annotations are in models in our 'shared' package - shared between client and server. Anyone know what I should change to resolve this? On Thursday, December 30, 2010 1:38:27 PM UTC-5, Andrea Boscolo wrote: I suppose you are trying to use that annotation

Re: XmlAdapter compile error

2012-06-20 Thread Andrea Boscolo
Such annotations are not GWT compatible (i.e., they are not known to the GWT emulated JRE and definitely cannot be compiled in js, even providing the relative sources - that I think they can be found in jaxb-api-src.jar inside the jaxb distribution). To allow jaxb annotations (and annotations

Compile Error - RequestFactory not found in project sources or resources

2012-04-04 Thread otth2oskier
I get the following message when I do a Maven compile of my project. I suspect it is looking for a gwt.xml file for RequestFactory somewhere but i snot finding it. I am not sure what dependencies I am missing. Failed to execute goal org.codehaus.mojo:gwt-maven-plugin: 2.4.0:compile (default) on

Re: Compile Error - RequestFactory not found in project sources or resources

2012-04-04 Thread Thomas Broyer
On Wednesday, April 4, 2012 5:49:40 PM UTC+2, otth2oskier wrote: I get the following message when I do a Maven compile of my project. I suspect it is looking for a gwt.xml file for RequestFactory somewhere but i snot finding it. I am not sure what dependencies I am missing. Failed to

Re: Compile Error - RequestFactory not found in project sources or resources

2012-04-04 Thread otth2oskier
Thanks. That did the trick. On Apr 4, 12:29 pm, Thomas Broyer t.bro...@gmail.com wrote: On Wednesday, April 4, 2012 5:49:40 PM UTC+2, otth2oskier wrote: I get the following message when I do a Maven compile of my project. I suspect it is looking for a gwt.xml file for RequestFactory

warningThreshold compile error

2012-02-08 Thread Alan Chaney
I have a project that worked fine up until this morning. By accident, I removed the GWT SDK from the C/P and now I'm getting: [ERROR] Unexpected internal compiler error java.lang.NoSuchFieldError: warningThreshold at

How to get gwt compile error in a gwt generator

2012-01-31 Thread Patrice De Saint Steban
Hello, I'm created a generator for automatically build the activityMapper. The generator scan alls Activities defined in the project and build the activityMapper. I use the JClassType.getSubtypes() for get all subtypes of Activity in the application. My problems is when a developper do a GWT

Re: gwt requestfactory compile error Deobfuscator.Builder; did you forget to inherit a required module

2012-01-29 Thread Thomas Broyer
On Thursday, January 26, 2012 9:48:42 PM UTC+1, Johann wrote: hi everyone, i build my first gwt requestfactory app and got first an error in the development output.. 21:43:01.805 [INFO] x] Ignored 1 unit with compilation errors in first pass. Compile with -strict or with -logLevel

Re: gwt requestfactory compile error Deobfuscator.Builder; did you forget to inherit a required module

2012-01-28 Thread Johann
thank you for your reply, im using gwt 2.4 with eclipse 3.7 Indigo. the containing gwt jars are directly copied from the plugin folder e.g requestfactory-server.jar how can i determine what version im using of this libaries? greez -- You received this message because you are subscribed to

Re: GWT RequestFactory compile error Deobfuscator.Builder

2012-01-28 Thread Johann
I already suspected that I should use maven build tool. ok thanks for ur hint. that make sense. i will test it -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: gwt requestfactory compile error Deobfuscator.Builder; did you forget to inherit a required module

2012-01-27 Thread strcin
Check your java build path entries contain proper version of gwt that is 2.4.0. This kind of thing happens when you try to run RequestFactoryValidation with older version of gwt jars. On 26 sij, 21:48, Johann syrpr...@gmail.com wrote: hi everyone, i build my first gwt requestfactory app and

Re: GWT RequestFactory compile error Deobfuscator.Builder

2012-01-27 Thread Thomas Broyer
None. This is server-side code. Whether you'll see the error or not really depends on how you compile your project. When your project grows, I'd suggest using 2 Eclipse/Maven/whatever projects for client and server code (and possibly a third one for shared code), then you'd compile client-side

GWT RequestFactory compile error Deobfuscator.Builder

2012-01-26 Thread Johann
Hi everyone, i try to build my first project with gwt requestfactory. after many other errors e.g annotation and missing jason classes. the development output show me an hint [INFO] [x] - Ignored 1 unit with compilation errors in first pass. Compile with -strict or with -logLevel set

gwt requestfactory compile error Deobfuscator.Builder; did you forget to inherit a required module

2012-01-26 Thread Johann
hi everyone, i build my first gwt requestfactory app and got first an error in the development output.. 21:43:01.805 [INFO] x] Ignored 1 unit with compilation errors in first pass. Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors. i did it and the console

Javac compile error

2011-12-29 Thread misko237
Hi to all gwt developers. I have one strange problem. Until recently, everything worked fine, but then, when I'm in development mode, first time I start my browser, I got java compiler error. HTTP ERROR: 500 Compile failed; see the compiler error output for details. RequestURI=/index.jsp

GWT compile error- AsyncFragmentLoader.onLoad

2011-11-18 Thread Nupur
Hi, I posted this some where else, but not sure if it was in the right place. Sorry if this qualifies as cross-posting, but I really need to solve this problem. I have created a GWT project in Eclipse. It compiles fine from Eclipse, but on GWT compile, I get [ERROR] An internal compiler

abstract classes in a different package and compile error

2011-11-16 Thread András Csányi
Dear All, There is a beautiful idea in my mind to split my application to different, logical parts. According to this idea I have a DiLibWebClient, an EJB, a Lib and a SAGWTLib module in my maven project. The DiLibWebClient contiains everything which is needed to build a web application but my

Re: abstract classes in a different package and compile error

2011-11-16 Thread Juan Pablo Gardella
[ERROR] no source info: public abstract class com.sayusiando.java.gwt.lib.salib.grid.abstracts.GridAbstract Add you source files to your classpath? 2011/11/16 András Csányi sayusi.a...@gmail.com Dear All, There is a beautiful idea in my mind to split my application to different, logical

Re: abstract classes in a different package and compile error

2011-11-16 Thread Juan Pablo Gardella
At first try copy sources to another project only to verify if this is the error. If compile, you don't have in the compile classpath the sources of the libs. You can generate mylib-sources.jar and add to the pom. For example a source dependency with maven that I use: dependency

Re: abstract classes in a different package and compile error

2011-11-16 Thread András Csányi
On 16 November 2011 15:46, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote:   [ERROR] no source info: public abstract class com.sayusiando.java.gwt.lib.salib.grid.abstracts.GridAbstract Add you source files to your classpath? I think I did. The dependencies of the DiLibWebClient project

Re: abstract classes in a different package and compile error

2011-11-16 Thread András Csányi
On 16 November 2011 15:55, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: At first try copy sources to another project only to verify if this is the error. If compile, you don't have in the compile classpath the sources of the libs. You can generate mylib-sources.jar and add to the pom.

Re: GWT 1.52 Compile error

2011-08-31 Thread John Huss
You can try regenerating the jar index by running this command: jar i some-jar-file.jar -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Update of Eclipse Plug In Causes Compile Error

2011-08-23 Thread Lenny
I just updated the GWT plug in from within Eclipse and am now getting the following compile error when I try to compile my project: WARNING: 'com.google.gwt.dev.GWTCompiler' is deprecated and will be removed in a future release. Use 'com.google.gwt.dev.Compiler' instead. (To disable this warning

Re: Compile Error - Method Not Implemented

2011-08-07 Thread Nick Apperley
Made a silly mistake of having the interface extend EventListener instead of having the class implement EventListener. In the class the required method was already implemented. With that corrected the compile works without any errors. Would be good if the Console window had more meaningful output

Re: Compile Error - Method Not Implemented

2011-08-04 Thread Jeffrey Chimene
On 8/3/2011 7:56 PM, Nick Apperley wrote: Is there a way to do a clean build from scratch? You can always delete the compiler output (including .class files). If you're using Eclipse, the clean function will accomplish that task. When a compile is done is any caching involved? I think the

Re: Compile Error - Method Not Implemented

2011-08-03 Thread Nick Apperley
Is there a way to do a clean build from scratch? When a compile is done is any caching involved? On Aug 3, 2:28 am, Jeffrey Chimene jchim...@gmail.com wrote: I see nothing there either. I'd try a few things: o Simplify the file. Use VerticalPanel or HorizontalPanel or a combination of them

Re: Compile Error - Method Not Implemented

2011-08-02 Thread Jeffrey Chimene
On 8/1/2011 9:12 PM, Nick Apperley wrote: Had another look at the UI file (LoginPage.ui.xml) and didn't see anything related to the issue. Below is the contents of that file: I see nothing there either. I'd try a few things: o Simplify the file. Use VerticalPanel or HorizontalPanel or a

Compile Error - Method Not Implemented

2011-08-01 Thread Nick Apperley
Whenever I try to do a compile the method not implemented error appears. The LoginPage.java file has the required method commented out. This should resolve the problem but the compile error still occurs. Below is the result of the compile

Re: Compile Error - Method Not Implemented

2011-08-01 Thread Jeffrey Chimene
On 8/1/2011 7:54 PM, Nick Apperley wrote: Whenever I try to do a compile the method not implemented error appears. The LoginPage.java file has the required method commented out. This should resolve the problem but the compile error still occurs. Below is the result of the compile: WAG: There's

Re: Compile Error - Method Not Implemented

2011-08-01 Thread Nick Apperley
Had another look at the UI file (LoginPage.ui.xml) and didn't see anything related to the issue. Below is the contents of that file: = !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder

GWT 2.4 beta | compile Error

2011-06-03 Thread xelibrety
I try to migrate from gwt 2.3 to 2.4beta. Unfortunately I'm not not able to compile: Here's the relevant error: [ERROR] Errors in 'jar:file/*/gwt-user-2.4.jar!/com/google/ gwt/validation/client/spi/GwtValidationProvider.java' [INFO] [ERROR] Line 36: Rebind result

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-25 Thread Raphael André Bauer
On Fri, May 20, 2011 at 3:34 PM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Fri, May 20, 2011 at 3:15 PM, Brian Reilly brian.irei...@gmail.com wrote: ... Just a quick follow-up: - Bug 2478 seems to be related and I added a description of our problem

Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project is up and running for months now, but out of a sudden stopped working... Maybe somebody knows something like that (there is an issue [1] here, but I am not sure if it's related). Does

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 10:29 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project is up and running for months now, but out of a sudden stopped working... Maybe somebody

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 10:49 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: On Fri, May 20, 2011 at 10:29 AM, Raphael André Bauer raphael.andre.ba...@gmail.com wrote: Hi GWTlist, we are getting a strange compile exception and we are not sure where it comes from. The project

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Brian Reilly
Have you recently moved to a newer version of GWT? The errors look vaguely like the kinds of errors that 3rd party libraries ran into when GWT 2.2 was released. However, I don't see any 3rd party packages listed in the stack trace. My best guess is that you may have multiple versions of the GWT

Re: Strange gwt compile error: JPrimitiveType JReferenceType

2011-05-20 Thread Raphael André Bauer
On Fri, May 20, 2011 at 3:15 PM, Brian Reilly brian.irei...@gmail.com wrote: Have you recently moved to a newer version of GWT? The errors look vaguely like the kinds of errors that 3rd party libraries ran into when GWT 2.2 was released. However, I don't see any 3rd party packages listed in

Re: Incubator has compile error with 2.3

2011-05-06 Thread Thad
it quite easy to write the Java code for CellTables. /dmc On Wed, May 4, 2011 at 6:57 AM, Gilles B gilles.broch...@gmail.com wrote: Using the last incubator version (drop for 2.1.0) with GWT 2.3 generate a compile error: [DEBUG] Validating newly compiled units [ERROR

Incubator has compile error with 2.3

2011-05-04 Thread Gilles B
Using the last incubator version (drop for 2.1.0) with GWT 2.3 generate a compile error: [DEBUG] Validating newly compiled units [ERROR] Errors in 'jar:file:/D:/.../WEB-INF/lib/gwt-incubator.jar!/com/ google/gwt/gen2/commonwidget/client/DecoratorPanel.java' [ERROR] Line 35: The constructor

Re: Incubator has compile error with 2.3

2011-05-04 Thread David Chandler
for 2.1.0) with GWT 2.3 generate a compile error: [DEBUG] Validating newly compiled units [ERROR] Errors in 'jar:file:/D:/.../WEB-INF/lib/gwt-incubator.jar!/com/ google/gwt/gen2/commonwidget/client/DecoratorPanel.java' [ERROR] Line 35: The constructor SimplePanel(Widget) is ambiguous I know 98

Re: Incubator has compile error with 2.3

2011-05-04 Thread jay
generate a compile error: [DEBUG] Validating newly compiled units [ERROR] Errors in 'jar:file:/D:/.../WEB-INF/lib/gwt-incubator.jar!/com/ google/gwt/gen2/commonwidget/client/DecoratorPanel.java' [ERROR] Line 35: The constructor SimplePanel(Widget) is ambiguous I know 98% of incubator

Re: Incubator has compile error with 2.3

2011-05-04 Thread David Chandler
: Using the last incubator version (drop for 2.1.0) with GWT 2.3 generate a compile error: [DEBUG] Validating newly compiled units [ERROR] Errors in 'jar:file:/D:/.../WEB-INF/lib/gwt-incubator.jar!/com/ google/gwt/gen2/commonwidget/client/DecoratorPanel.java' [ERROR] Line 35

Compile error: No source code is available for type

2011-03-29 Thread drhender
I am attempting to get the wave-in-a-box project building on Windows, and am seeing errors in the GWT compilation. Compiling module org.waveprotocol.box.webclient.WebClient Validating newly compiled units [ERROR] Errors in 'file:/D:/dev/wave/WPL-wave-protocol/proto_src/

[gwt-contrib] Re: Fix a generics compile error on OSX java 1.6 (issue1289801)

2011-01-14 Thread nchalko
Bug report http://code.google.com/p/google-web-toolkit/issues/detail?id=5876 http://gwt-code-reviews.appspot.com/1289801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r9550 committed - Fix a generics compile error on OSX java 1.6...

2011-01-14 Thread codesite-noreply
Revision: 9550 Author: ncha...@google.com Date: Fri Jan 14 06:38:38 2011 Log: Fix a generics compile error on OSX java 1.6 Review at http://gwt-code-reviews.appspot.com/1289801 Review by: rchan...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=9550 Modified: /trunk

[gwt-contrib] Re: Fix a generics compile error on OSX java 1.6 (issue1289801)

2011-01-14 Thread rchandia
Submitted as of r9550 On 2011/01/14 17:19:46, Nick Chalko wrote: Bug report http://code.google.com/p/google-web-toolkit/issues/detail?id=5876 http://gwt-code-reviews.appspot.com/1289801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Fix a generics compile error on OSX java 1.6 (issue1289801)

2011-01-13 Thread nchalko
Reviewers: rchandia, Description: Fix a generics compile error on OSX java 1.6 Please review this at http://gwt-code-reviews.appspot.com/1289801/show Affected files: M user/test/com/google/gwt/requestfactory/client/RequestFactoryTestBase.java Index: user/test/com/google/gwt

[gwt-contrib] Re: Fix a generics compile error on OSX java 1.6 (issue1289801)

2011-01-13 Thread rchandia
LGTM On 2011/01/14 01:17:55, Nick Chalko wrote: http://gwt-code-reviews.appspot.com/1289801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

XmlAdapter compile error

2010-12-30 Thread kosaco
Hi! In my gwt project, I use XmlAdapter class of the javax.xml.bind.annotation.adapters package. When I'm compiling the project, it has the follow error: [ERROR] Line 11: No source code is available for type javax.xml.bind.annotation.adapters.XmlAdapterValueType,BoundType; did you forget to

XmlAdapter compile error

2010-12-30 Thread kosaco
Hi! In my gwt project, I use XmlAdapter class of the javax.xml.bind.annotation.adapters package. When I'm compiling the project, it has the follow error: [ERROR] Line 11: No source code is available for type javax.xml.bind.annotation.adapters.XmlAdapterValueType,BoundType; did you forget to

  1   2   >