Artem24 / gwtgae2011

Automatically exported from code.google.com/p/gwtgae2011
0 stars 0 forks source link

Incomplete dependency #5

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Download the gwtgae2011 and import it into eclipse through the maven plugin 
m2eclipse

What is the expected output? What do you see instead?

The project does not compile:
com.gwtplatform.dispatch.server.AbstractDispatchServiceImpl cannot be resolved
com.gwtplatform.dispatch.shared.ActionImpl cannot be resolved

What version of the product are you using? On what operating system?
maven2

Please provide any additional information below.

In order to solve this, add the following two dependencies:

<dependency>
    <groupId>com.gwtplatform</groupId>
    <artifactId>gwtp-dispatch-shared</artifactId>
    <version>${gwtp.version}</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.gwtplatform</groupId>
    <artifactId>gwtp-dispatch-server</artifactId>
    <version>${gwtp.version}</version>
    <scope>provided</scope>
</dependency>

Original issue reported on code.google.com by alexandr...@gmail.com on 23 Aug 2011 at 7:47