RestyGWT

Download it today!

Just need a jar?

The latest released is version: 1.0 it should be available on maven central, but it it has not yet been mirrored there you can get it from: Nightly snapshots are available for:

Are you a Maven User?

Just add the following to your pom.xml

<dependency>
  <groupId>org.fusesource.restygwt</groupId>
  <artifactId>restygwt</artifactId>
  <version>1.0</version>
</dependency>

If your using a snapshot version, make sure you add the following maven repository to your pom.xml

  
<repositories>
  <repository>
    <id>fusesource-nexus-snapshots</id>
    <name>Fusesource Nexus Snapshots</name>
    <url>http://repo.fusesource.com/nexus/content/repositories/snapshots</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
    <releases>
      <enabled>false</enabled>
    </releases>
  </repository>
</repositories>