| <?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/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>com.google.gwt.site.webapp</groupId> |
| <artifactId>gwt-site-webapp</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| <packaging>war</packaging> |
| |
| |
| |
| |
| |
| |
| <properties> |
| <appengine.app.version>1</appengine.app.version> |
| <appengine.target.version>1.7.6</appengine.target.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <gwtversion>2.5.1</gwtversion> |
| </properties> |
| |
| <dependencies> |
| <!-- Compile/runtime dependencies --> |
| <dependency> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>appengine-api-1.0-sdk</artifactId> |
| <version>${appengine.target.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| <version>2.5</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jstl</groupId> |
| <artifactId>jstl</artifactId> |
| <version>1.2</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-server</artifactId> |
| <version>1.9</version> |
| </dependency> |
| <dependency> |
| <groupId>com.sun.jersey</groupId> |
| <artifactId>jersey-grizzly2</artifactId> |
| <version>1.9</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| <version>1.7</version> |
| </dependency> |
| |
| <!-- Test Dependencies --> |
| <dependency> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>appengine-testing</artifactId> |
| <version>${appengine.target.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>appengine-api-stubs</artifactId> |
| <version>${appengine.target.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.sun.jersey.contribs</groupId> |
| <artifactId>jersey-guice</artifactId> |
| <version>1.7</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>javax.jdo</groupId> |
| <artifactId>jdo-api</artifactId> |
| <version>3.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.datanucleus</groupId> |
| <artifactId>datanucleus-core</artifactId> |
| <version>3.1.1</version> |
| <scope>runtime</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.datanucleus</groupId> |
| <artifactId>datanucleus-api-jdo</artifactId> |
| <version>3.1.2</version> |
| </dependency> |
| <dependency> |
| <groupId>com.google.appengine.orm</groupId> |
| <artifactId>datanucleus-appengine</artifactId> |
| <version>2.1.2</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.google.gwt</groupId> |
| <artifactId>gwt-user</artifactId> |
| <version>${gwtversion}</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>1.0.0.GA</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.validation</groupId> |
| <artifactId>validation-api</artifactId> |
| <version>1.0.0.GA</version> |
| <classifier>sources</classifier> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>javax.persistence</groupId> |
| <artifactId>persistence-api</artifactId> |
| <version>1.0</version> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <version>2.5.1</version> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.6</source> |
| <target>1.6</target> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-war-plugin</artifactId> |
| <version>2.3</version> |
| <configuration> |
| <!-- <archiveClasses>true</archiveClasses> --> |
| <webResources> |
| <!-- in order to interpolate version from pom into appengine-web.xml --> |
| <resource> |
| <directory>${basedir}/src/main/webapp/WEB-INF</directory> |
| <filtering>true</filtering> |
| <targetPath>WEB-INF</targetPath> |
| </resource> |
| </webResources> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>com.google.appengine</groupId> |
| <artifactId>appengine-maven-plugin</artifactId> |
| <version>${appengine.target.version}</version> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-eclipse-plugin</artifactId> |
| <version>2.8</version> |
| |
| <configuration> |
| <downloadSources>true</downloadSources> |
| <downloadJavadocs>false</downloadJavadocs> |
| <buildOutputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</buildOutputDirectory> |
| <projectnatures> |
| <projectnature>org.eclipse.jdt.core.javanature</projectnature> |
| <projectnature>com.google.gdt.eclipse.core.webAppNature</projectnature> |
| <nature>com.google.appengine.eclipse.core.gaeNature</nature> |
| <nature>com.google.gwt.eclipse.core.gwtNature</nature> |
| </projectnatures> |
| <buildcommands> |
| <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand> |
| <buildcommand>com.google.gdt.eclipse.core.webAppProjectValidator</buildcommand> |
| |
| <buildcommand>com.google.appengine.eclipse.core.projectValidator</buildcommand> |
| <buildcommand>com.google.gwt.eclipse.core.gwtProjectValidator</buildcommand> |
| <buildcommand>com.google.appengine.eclipse.core.enhancerbuilder</buildcommand> |
| |
| </buildcommands> |
| <classpathContainers> |
| <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> |
| <classpathContainer>com.google.appengine.eclipse.core.GAE_CONTAINER</classpathContainer> |
| <classpathContainer>com.google.gwt.eclipse.core.GWT_CONTAINER</classpathContainer> |
| </classpathContainers> |
| <excludes> |
| <exclude>com.google.gwt:gwt-servlet</exclude> |
| <exclude>com.google.gwt:gwt-user</exclude> |
| <exclude>com.google.gwt:gwt-dev</exclude> |
| <exclude>javax.validation:validation-api</exclude> |
| <exclude>com.google.appengine:appengine-api-1.0-sdk</exclude> |
| <exclude>com.google.appengine:appengine-api-stubs</exclude> |
| <exclude>com.google.appengine:appengine-testing</exclude> |
| <exclude>org.datanucleus:datanucleus-core</exclude> |
| <exclude>org.datanucleus:datanucleus-enhancer</exclude> |
| <exclude>org.datanucleus:datanucleus-jpa</exclude> |
| <exclude>org.datanucleus:datanucleus-api-jdo</exclude> |
| <exclude>com.google.appengine.orm:datanucleus-appengine</exclude> |
| |
| |
| |
| </excludes> |
| |
| |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.datanucleus</groupId> |
| <artifactId>maven-datanucleus-plugin</artifactId> |
| <version>3.1.2</version> |
| <configuration> |
| <log4jConfiguration>${basedir}/log4j.properties</log4jConfiguration> |
| <verbose>false</verbose> |
| <fork>false</fork> |
| </configuration> |
| <executions> |
| <execution> |
| <phase>process-classes</phase> |
| <goals> |
| <goal>enhance</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>gwt-maven-plugin</artifactId> |
| <version>2.5.1</version> |
| <executions> |
| <execution> |
| <configuration> |
| <module>com.google.gwt.site.webapp.GWTProject</module> |
| <runTarget>index.html</runTarget> |
| <copyWebapp>true</copyWebapp> |
| </configuration> |
| <goals> |
| <goal>compile</goal> |
| <goal>test</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |