I figured it out.

I'm using Maven and my GWT dependency looked like this

<dependency>
        <groupId>com.google.gwt</groupId>
        <artifactId>gwt-user</artifactId>
        <version>${gwt.version}</version>
        <scope>runtime</scope>
</dependency>

The org.codehaus.mojo.hibernate3-maven-plugin requires the dependency
scope to be in test.  So I removed the runtime scope and it worked.



On Oct 5, 10:14 pm, Ted Malaska <ted.mala...@gmail.com> wrote:
> I've used GWT on about 10 projects now and it's been great.  This
> project I tried doing things a little differently.  Using JPA
> (Hibernate) and hbm2ddl.  Now I'm have a bunch of problems.
>
> I think I solved all the problem except for hbm2ddl.  When I run it on
> the POJOs I get a ClassNotFoundException.  If I remove IsSerializable
> then hbm2ddl finds the POJOs.
>
> Does anyone know a fix for this or do I have to drop hbm2ddl?
>
> Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to