-
Notifications
You must be signed in to change notification settings - Fork 29
Emite and Maven
To develop web applications using Emite, you have two choices: you can either use it with Maven, or as a standalone JAR.
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>
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.
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.