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 google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.