Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <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/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>memory</groupId>
- <artifactId>memory</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>memory-html</artifactId>
- <packaging>war</packaging>
- <name>Memory HTML</name>
- <properties>
- <gwt.module>memory.Memory</gwt.module>
- <gwt.name>memory</gwt.name>
- <!-- Desired Google App Engine SDK version -->
- <gae.version>1.6.1</gae.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>memory</groupId>
- <artifactId>memory-core</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.googlecode.playn</groupId>
- <artifactId>playn-html</artifactId>
- <version>${playn.version}</version>
- </dependency>
- <!-- Start Google App Engine dependencies -->
- <!-- These can be removed if you don't wish to deploy to Google App Engine -->
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-api-1.0-sdk</artifactId>
- <version>${gae.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-api-labs</artifactId>
- <version>${gae.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-testing</artifactId>
- <version>${gae.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-api-stubs</artifactId>
- <version>${gae.version}</version>
- <scope>test</scope>
- </dependency>
- <!-- End Google App Engine dependencies -->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>gwt-maven-plugin</artifactId>
- <executions>
- <execution>
- <phase>prepare-package</phase>
- <goals>
- <goal>compile</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- allows testing of HTML backend via: mvn integration-test -Phtml -->
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>8.0.0.v20110901</version>
- <configuration>
- <webApp>
- ${project.basedir}/target/${project.artifactId}-${project.version}
- </webApp>
- </configuration>
- <executions>
- <execution>
- <id>test-html</id>
- <phase>integration-test</phase>
- <goals>
- <goal>run-exploded</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-eclipse-plugin</artifactId>
- <version>2.8</version>
- <configuration>
- <downloadSources>true</downloadSources>
- <downloadJavadocs>false</downloadJavadocs>
- <wtpversion>2.0</wtpversion>
- <additionalBuildcommands>
- <buildCommand>
- <name>com.google.gwt.eclipse.core.gwtProjectValidator</name>
- </buildCommand>
- </additionalBuildcommands>
- <additionalProjectnatures>
- <projectnature>com.google.gwt.eclipse.core.gwtNature</projectnature>
- <!-- This nature can be removed if you don't wish to deploy to Google App Engine -->
- <projectnature>com.google.appengine.eclipse.core.gaeNature</projectnature>
- </additionalProjectnatures>
- </configuration>
- </plugin>
- <!-- Start Google App Engine plugin configuration -->
- <!-- This can be removed if you don't wish to deploy to Google App Engine -->
- <plugin>
- <groupId>net.kindleit</groupId>
- <artifactId>maven-gae-plugin</artifactId>
- <version>0.9.2</version>
- <dependencies>
- <!-- Use explicit dependency on gae-runtime here, so we can specify GAE SDK version -->
- <dependency>
- <groupId>net.kindleit</groupId>
- <artifactId>gae-runtime</artifactId>
- <version>${gae.version}</version>
- <type>pom</type>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <id />
- <phase>validate</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- End Google App Engine plugin configuration -->
- </plugins>
- <!-- Start Google App Engine Eclipse plugin configuration -->
- <!-- This can be removed if you don't wish to deploy to Google App Engine -->
- <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>net.kindleit</groupId>
- <artifactId>maven-gae-plugin</artifactId>
- <versionRange>[0.9.2,)</versionRange>
- <goals>
- <goal>unpack</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <execute />
- </action>
- </pluginExecution>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <versionRange>[2.1.1,)</versionRange>
- <goals>
- <goal>exploded</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <execute />
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- <!-- End Google App Engine plugin configuration -->
- </build>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment