Hi,

I've just set up a new multi-module project with Spring Roo 1.2.3 (see log.roo). I've had to update the GwtView module's pom.xml with this dependency:

Code:
<dependency>
            <groupId>com.company.rootest.core</groupId>
            <artifactId>Core</artifactId>
            <version>0.1.0.BUILD-SNAPSHOT</version>
            <scope>system</scope>
            <systemPath>../Core/target/Core-0.1.0.BUILD-SNAPSHOT.jar</systemPath>
         </dependency>
So, I have a Core module which holds the business logic and a GwtView module for presentation. The latter is set up with these commands to use GWT.

Code:
web gwt setup
web gwt all --proxyPackage ~.client.proxy --requestPackage ~.client.request
Code:
mvn gwt:run
I get the following error when trying to run the app:

"Add @SuppressWarnings("requestfactory") to dismiss.
error: Could not load domain mapping for context FooRequest.
Check that both the shared interfaces and server domain types are on the classpath.
1 error"

Could you please help me with this?

Thanks in advance!
Miklós

log.roo.txt