Never mind... It was the version of the gwt-maven-plugin... However,
now, I can't get it to install. What version of the gwt-maven-plugin
am I supposed to use with the latest 2.1.0 release of GWT and which
repository does it reside in?
Right now, I have this (from the expenses example):
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.3.2.google</version>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
On Fri, Nov 5, 2010 at 4:35 PM, Yaakov <[email protected]> wrote:
> Hi,
>
> I switched to using GWT 2.1.0 and updated my maven dependencies, so
> they now look like this:
> <properties>
> <gwt.version>2.1.0</gwt.version>
> <spring.version>3.0.5.RELEASE</spring.version>
> </properties>
> <dependency>
> <groupId>com.google.gwt</groupId>
> <artifactId>gwt-servlet</artifactId>
> <version>${gwt.version}</version>
> <scope>runtime</scope>
> </dependency>
> <dependency>
> <groupId>com.google.gwt</groupId>
> <artifactId>gwt-user</artifactId>
> <version>${gwt.version}</version>
> <scope>provided</scope>
> </dependency>
>
> For some reason, when I try to run mvn clean install, maven looks for
> com.google.gwt:gwt-dev:jar:windows:2.1.0, which has "windows" as the
> classifier. Of course, it can't find it since there is no windows-
> specific version.
>
> I have no idea why it started using the classifier and how to tell
> maven to stop trying to look for classifier specific one. Anyone know
> what's going on? I've been using GWT 2.0.4 which also did not use the
> classifier anymore and everything worked just fine.
>
> any help would be greatly appreciated!
>
> -Yaakov.
--
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.