Skip to content
twistedpair edited this page Aug 25, 2012 · 14 revisions

Here is the most recent build of the GWT-Maps-V3-Api.

We've already Mavenized this project, but are not yet in the Central Repo. Until then, grab the latest jars from the Downloads page.

To Build (with Maven)

  1. Download the jar (only gwt-maps-api-v3-3.8.0-beta2.jar is needed)

  2. Add the jars to your local repo.

  3. Add the dependencies to your POM.

	<!-- GWT Maps API V3 -->
	<dependency>
		<groupId>com.google.gwt.maps</groupId>
		<artifactId>gwt-maps-api-v3</artifactId>
		<version>${gmapsApiVersion}-beta2-SNAPSHOT</version>
		<scope>compile</scope>
	</dependency>

	<!-- Other Google -->
	<dependency>
		<groupId>com.google.gwt.google-apis</groupId>
		<artifactId>gwt-ajaxloader</artifactId>
		<version>1.1.0</version>
	</dependency>
  1. Add the inherits statement to your module.gwt.xml.
	<inherits name='com.google.gwt.maps.Apis_Google_Maps' />
Clone this wiki locally