gwt-maps-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.branflake2267</groupId> <artifactId>gwt-maps-api</artifactId> <version>3.10.0-alpha-7</version> </dependency>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.github.branflake2267</groupId> <artifactId>gwt-maps</artifactId> <version>3.10.0-alpha-7</version> </parent> <artifactId>gwt-maps-api</artifactId> <name>GWT Maps API V3 - Core API</name> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.java</include> <include>**/*.gwt.xml</include> </includes> </resource> </resources> <plugins> <!-- JUnit Testing --> <!-- run 'mvn test' for running JUnit Tests --> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.12</version> <configuration> <excludes> <exclude>**/*GwtTest.java</exclude> </excludes> </configuration> </plugin> <!-- GWT --> <!-- run 'mvn integration-test' for running the GwtTestSuite --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>${gwt.maven.version}</version> <configuration> <extraJvmArgs>-Xss1024k -Xmx512M</extraJvmArgs> <includes>**/*GwtTestSuite.java</includes> <excludes>**/*GwtTest.java</excludes> <mode>htmlunit</mode> <testTimeOut>180</testTimeOut> <strict>true</strict> <style>${gwt.style}</style> <compileSourcesArtifacts> <compileSourcesArtifact>com.google.gwt.maps:Maps</compileSourcesArtifact> </compileSourcesArtifacts> </configuration> <executions> <execution> <goals> <goal>test</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> <version>${gwt.version}</version> </dependency> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-servlet</artifactId> <version>${gwt.version}</version> </dependency> </dependencies> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> org.codehaus.mojo </groupId> <artifactId> gwt-maven-plugin </artifactId> <versionRange> [2.4.0,) </versionRange> <goals> <goal>resources</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <!-- External project dependencies --> <dependencies> <!-- GWT Apis --> <dependency> <groupId>com.google.gwt.google-apis</groupId> <artifactId>gwt-ajaxloader</artifactId> </dependency> <!-- GWT --> <dependency> <groupId>com.google.gwt</groupId> <artifactId>gwt-user</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>