Tweaks to samples/expenses/pom.xml: * comment out two appengine jars needed to run GAE unit tests that do not come in properly until you run gae:unpack * changes 1.0.7 final to plain old 1.0.7 so it can be picked up from maven central and remove dependency on maven-gae-plugin repo in SVN, which is VERY slow Review at http://gwt-code-reviews.appspot.com/1035801 Review by: drfibonacci@google.com git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@9123 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/expenses/README-MAVEN.txt b/samples/expenses/README-MAVEN.txt index cbd6822..cbb08be 100644 --- a/samples/expenses/README-MAVEN.txt +++ b/samples/expenses/README-MAVEN.txt
@@ -5,9 +5,10 @@ also work, earlier versions may not. Eclipse users will need to install the following plugin components: +- Google Plugin for Eclipse (instructions at http://code.google.com/eclipse/) - m2eclipse Core - Maven Integration for WTP (in m2eclipse extras) - Instructions for how to install both can be found here: + Instructions for installing the maven plugins can be found here: http://m2eclipse.sonatype.org/installing-m2eclipse.html Ensure Eclipse is configured to use Java 1.6 as this sample uses
diff --git a/samples/expenses/pom.xml b/samples/expenses/pom.xml index 5b1b174..e22bf9a 100644 --- a/samples/expenses/pom.xml +++ b/samples/expenses/pom.xml
@@ -25,11 +25,6 @@ <enabled>true</enabled> </snapshots> </repository> - <repository> - <id>maven-gae-plugin-repo</id> - <url>http://maven-gae-plugin.googlecode.com/svn/repository</url> - <name>maven-gae-plugin repository</name> - </repository> <repository> <id>spring-maven-release</id> <name>Spring Maven Release Repository</name> @@ -155,7 +150,7 @@ <dependency> <groupId>com.google.appengine.orm</groupId> <artifactId>datanucleus-appengine</artifactId> - <version>1.0.7.final</version> + <version>1.0.7</version> </dependency> <!-- must be in main dependencies as well as plugin dependencies below --> <dependency> @@ -416,6 +411,9 @@ <artifactId>json</artifactId> <version>20090211</version> </dependency> + <!-- Uncomment appengine-local-runtime and appengine-tools-api to be able to run App Engine unit tests --> + <!-- With these uncommented, you must run mvn gae:unpack before importing the project into Eclipse --> + <!-- <dependency> <groupId>com.google.appengine</groupId> <artifactId>appengine-local-runtime</artifactId> @@ -430,6 +428,7 @@ <scope>system</scope> <systemPath>${gae.home}/lib/appengine-tools-api.jar</systemPath> </dependency> + --> <dependency> <groupId>net.sf.jsr107cache</groupId> <artifactId>jsr107cache</artifactId>