Search code examples
gwt-maven-plugin

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?


Solution

  • 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>