Dear GWT lovers,
I'm trying to test the last GWT snapshot but I cannot configure maven to use it.
I've added the following repo:
<repositories>
<repository>
<id>gwt-sonatype-snapshots</id>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
</repositories>
and use the following version: 2.7.0-SNAPSHOT
But Maven is not able to resolve dependencies:
[WARNING] The POM for com.google.gwt:gwt-user:jar:2.7.0-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for com.google.gwt:gwt-dev:jar:2.7.0-SNAPSHOT is missing, no dependency information available
[WARNING] The POM for com.google.gwt:gwt-servlet:jar:2.7.0-SNAPSHOT is missing, no dependency information available
I've looked into the directories
and indeed the pom files are missing.
Am I missing something ?
Julien