Hey,

I've started using gwt. I'm currently trying to integrate my new
project within a maven module suite, using the codehaus gwt-maven
plugin. My pom.xml file contains gwt dependencies. All is well until I
try to go beyond the 1.x gwt version. The pom.xml contains the
following code:
...
    <properties>
               <gwt-version>x.x.x</gwt-version>
     </properties>
...
       <dependencies>
...
               <dependency>
                        <groupId>com.google.gwt</groupId>
                        <artifactId>gwt-servlet</artifactId>
                        <version>${gwt-version}</version>
                        <scope>compile</scope>
                </dependency>
                <dependency>
                        <groupId>com.google.gwt</groupId>
                        <artifactId>gwt-user</artifactId>
                        <version>${gwt-version}</version>
                        <scope>provided</scope>
                </dependency>
        </dependencies>
        <build>
                <plugins>
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>
                                <artifactId>gwt-maven-plugin</artifactId>
                                <version>1.1</version>
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>clean</goal>
                                                        <goal>compile</goal>
                                                        <goal>eclipse</goal>
                                                </goals>
                                        </execution>
                                </executions>
                        </plugin>
                </plugins>
        </build>

Now until after version 1.7.1 the project compiles. When I try to go
beyond it, it first tells me to manually download the gwt-
dev-2.0.4.jar and then install it. I've done that, but afterwards it
tells me to do the same thing with gwt-dev-2.0.4-linux-lib.zip, but
the maven2 repo does not contain such a file.
Will the gwt team publish the remaining needed libraries onto the mvn
repo?
Is there any way to use the gwt-maven-plugin and gwt 2.0.4?
Should I stick to gwt 1.7.1 until the gwt team provides the needed
linux libraries?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
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.

Reply via email to