Skip to content

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

  1. Add the repository xml to the project pom.
  2. 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

  1. Clone this project.
  2. Run mvn clean install in the project directory.
  3. 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>
Clone this wiki locally