On Wednesday, September 12, 2012 2:07:06 PM UTC+2, tanteanni wrote: > > i did some researches: the hosted mode stops working if i only add the > dependency - without using it. as mentioned above i checked out the > revision before adding and using this lib. based on that revision i only > added the dependency to pom and the hosted mode stops working. on deleting > the dependency it is working again.
Incompatibility with some (embedded) dependency of GWT? (ECJ/JDT maybe, or some Apache Commons) Short-term solution: exclude BiRT from the DevMode classpath (try using "mvn gwt:run" or "mvn gwt:debug" to launch the DevMode, and use runClasspathExcludes to exclude BiRT: http://mojo.codehaus.org/gwt-maven-plugin/debug-mojo.html#runClasspathExcludes ) Long-term solution: use separate modules for client-side and server-side (and shared) code, so that your client-side module only has dependencies on client-side libraries, that are much less likely to collide with the DevMode (and Compiler, BTW). -- 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/-/GxzJjhoJZ5sJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
