Skip to content
This repository has been archived by the owner on Aug 5, 2019. It is now read-only.

Using gwt bootstrap maven repository

Carlos Alexandro Becker edited this page Aug 6, 2013 · 3 revisions

First add a repository to your pom.xml

 <repository>
     <id>sonatype</id>
     <url>http://oss.sonatype.org/content/repositories/snapshots</url>
     <snapshots><enabled>true</enabled></snapshots>
     <releases><enabled>false</enabled></releases>
 </repository>

Then add the dependency:

<dependency>
    <groupId>com.github.gwtbootstrap</groupId>
    <artifactId>gwt-bootstrap</artifactId>
    <version>2.2.1.0</version>
    <scope>provided</scope>
</dependency>

PROTIP: You can search for releases in mvnrepository.

Now, just run mvn process-resources to download the jar files. You can also take a look at Javadocs to learn how to use it.

Clone this wiki locally