> Yes they are, versionned as 2.1-SNAPSHOT.
> Example with
> com.google.gwt::gwt-user:http://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/maven/com/g...
OK. I am admittedly new to Maven, but I'm missing something.
(Something simple, I imagine.)
Here's the updates I've made to my pom.xml:
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>2.1-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>2.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.3.1.google</version>
</plugin>
</plugins>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>gwt-dev-release</id>
<url>http://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/maven/
</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>gwt-dev-release</id>
<url>http://google-web-toolkit.googlecode.com/svn/2.1.0.M3/gwt/maven/
</url>
</pluginRepository>
</pluginRepositories>
When I attempt to run mvn install, I get the following error:
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) com.google.gwt:gwt-user:jar:2.1-SNAPSHOT
Try downloading the file manually ...
----------
1 required artifact is missing.
for artifact:
com.bridgeenergygroup:pa-web:war:1.0
from the specified remote repositories:
central (http://repo1.maven.org/maven2),
gwt-dev-release (http://google-web-toolkit.googlecode.com/svn/
2.1.0.M3/gwt/maven/)
I thought I have all of the urls correct, but apparently not.
I apologize for my cluelessness, but can anyone please point me in the
right direction?
Thanks, Jason
--
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.