Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to get gwt-maven-plugin 2.8.0-SNAPSHOT

The gwt-maven-plugin documentation lists 2.8.0-SNAPSHOT as current version, and I'd like to evaluate the upcoming 2.8.0 GWT.

While version 2.7.0 is available directly from the Maven Central repository, I am unable to find the correct repository from which to retrieve the snapshot. Unfortunately I have been unable to find this information on the project's homepage.

Can anybody please provide me with a working <repository/> and <pluginRepository/> configuration to use in my pom.xml?

like image 430
Martin C. Avatar asked Nov 02 '15 22:11

Martin C.


1 Answers

This worked for me:

<repositories>
  <repository>
    <id>snapshots-repo</id>
    <url>https://oss.sonatype.org/content/repositories/google-snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>
<pluginRepositories>
  <pluginRepository>
    <id>snapshots-repo</id>
    <!--<url>https://oss.sonatype.org/content/repositories/google-snapshots</url>-->                    
    <url>https://oss.sonatype.org/content/repositories/public/</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </pluginRepository>
</pluginRepositories>
like image 196
Dirk Holzenburg Avatar answered Dec 30 '22 10:12

Dirk Holzenburg