Re: Problem using java projects in GWT

2010-03-31 Thread lineman78
I think the 2 of us are answering different questions. I believe the problem he is having is that the GWT compiler is not allowing him to use objects from a previous Java project he had done(I am assuming it has some algorithms or POJOs that he doesn't want to replicate). The GWT compiler won't a

Re: Problem using java projects in GWT

2010-03-31 Thread Neil
In our projects, we just use our source code path directly. When launching the project in DevMode from within Eclipse, the launch config's classpath contains both the "default classpath" plus the /src directory. When compiling the project in Ant, we reference the source path directly in the gwt C

Re: Problem using java projects in GWT

2010-03-31 Thread Lucas Rios
Yes, is Eclipse. and .. Thanks I'm gonna to try it 2010/3/30 kozura > This using Eclipse? Be sure it's actually in the classpath under the > Run Configurations dialog, as the GWT compiler needs to find it there > even if Eclipse doesn't. > > On Mar 30, 1:28 pm, Lucas Rios wrote: > > Hi

Re: Problem using java projects in GWT

2010-03-31 Thread Lucas Rios
Thanks I'm gonna to try it 2010/3/30 lineman78 > You cannot use source code from a java project in GWT directly. All > GWT code must be in the client path of a module. i.e. > sura.ticketcheck.bo.Instancia is not part of a GWT module. There is > one workaround I have gotten to work(only on

Re: Problem using java projects in GWT

2010-03-30 Thread lineman78
You cannot use source code from a java project in GWT directly. All GWT code must be in the client path of a module. i.e. sura.ticketcheck.bo.Instancia is not part of a GWT module. There is one workaround I have gotten to work(only once, so no guarantee). 1) Create a file BoModule.gwt.xml in yo

Re: Problem using java projects in GWT

2010-03-30 Thread kozura
This using Eclipse? Be sure it's actually in the classpath under the Run Configurations dialog, as the GWT compiler needs to find it there even if Eclipse doesn't. On Mar 30, 1:28 pm, Lucas Rios wrote: > Hi everybody > > I'm trying to use a Java project in GWT but I have had some problems > beca

Problem using java projects in GWT

2010-03-30 Thread Lucas Rios
Hi everybody I'm trying to use a Java project in GWT but I have had some problems because I can't compile the GWT project. I have done this: 1.Make a xxx.gwt.xml in the java project. 2. Add a external JAR (java project) in the java build path of the GWT project. In Projects and libraries tabs.

Problem using java projects in GWT

2010-03-30 Thread Lucas Rios
Hi everybody I'm trying to use a Java project in GWT but I have had some problems because I can't compile the GWT project. I have done this: 1.Make a xxx.gwt.xml in the java project. 2. Add a external JAR (java project) in the java build path of the GWT project. In Projects and libraries tabs.