Wednesday, October 12, 2011

gwt-phonegap in maven central repository

Using gwt-phonegap has become much easier since the project is now available from the maven central repository. You can use your favorite build tool to add the dependency. It is deployed with the groupId: com.googlecode.gwtphonegap and the artifactId: gwt-phonegap and version 1.0.0.0 For maven this would look like:
<dependency>
      <groupId>com.googlecode.gwtphonegap</groupId>
      <artifactId>gwtphonegap</artifactId>
      <version>1.0.0.0</version>
</dependency>
I hope that saves you a lot of local deployment time when using gwtphonegap. In the next couple of weeks I will also start an archetype for a standard gwtphonegap project, so getting stated will be much easier.

3 comments:

  1. Thanks a lot Daniel, yesterday, I was asking me how to add gwt-phonegap to my new project and today the answer is in your blog.

    ReplyDelete