-
Notifications
You must be signed in to change notification settings - Fork 7
Maven Configuration
Brandon Donnelson edited this page Aug 30, 2013
·
2 revisions
Using maven to download the dependencies.
##Maven Pom Configurations Available maven pom configurations.
###Latest Version Find the latest versions available
###Release A release is not available yet.
###Snapshots
- Add the
repository
xml to the project pom. - Add the
dependency
xml to the project pom.
<repositories>
<repository>
<id>sonatype.snapshots</id>
<name>Sonatype snapshot repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<layout>default</layout>
</repository>
</repositories>
<dependency>
<groupId>org.senchalabs.gwt</groupId>
<artifactId>gwt-driver</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
###Source Install
- Clone this project.
- Run
mvn clean install
in the project directory. - Add the
dependency
xml to the project pom.
<dependency>
<groupId>org.senchalabs.gwt</groupId>
<artifactId>gwt-driver</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
##Thanks to: Sencha.com
Download
Maven Configuration
Docs
Locating Widgets
Locating Elements
Driver Design
Models
Examples
GWT & GXT Sample