Skip to content
xose edited this page May 8, 2011 · 4 revisions

Using Emite

To develop web applications using Emite, you have two choices: you can either use it with Maven, or as a standalone JAR.

Maven support

If you are developing a GWT web application with Maven, clone the repository and run mvn install to install Emite locally. You can then add it to your project's dependencies in the POM:

<dependency>
  <groupId>com.calclab</groupId>
  <artifactId>emite</artifactId>
  <version>0.7-SNAPSHOT</version>
  <scope>compile</scope>
</dependency>

Standalone JAR

If your project is not using Maven for building and dependency management, you can use Emite as a standalone JAR. You can download one of the prebuilt JARs (note: not available yet) or build the latest version from source by running mvn package

This will generate a JAR file inside the "target" directory which you can include in your projects.

Developing in Eclipse

To load Emite in Eclipse for development, you can generate a project running mvn eclipse:eclipse

If you are using the m2eclipse plugin, you can also import it directly: File->Import->Maven->Existing Maven project.

Clone this wiki locally