views:

325

answers:

2

Is anyone aware of a publicly available Maven repository that contains the Google App Engine 1.3.1 JAR's? I've been using the maven-gae-plugin repository, but it's not updated yet. It looks like the JAR's on the central Maven repository are even older.

EDIT: It looks like Cletus's answer below has most of the JAR's, but not all of them. For example, the datanucleus-appengine-1.0.5.final.jar isn't available.

+2  A: 

Try

<dependency>
  <groupId>com.google.appengine</groupId>
  <artifactId>appengine-api-1.0-sdk</artifactId>
  <version>1.3.1</version>
</dependency>

with

<repository>
  <id>seasar</id>
  <url>http://maven.seasar.org/maven2&lt;/url&gt;
</repository>
cletus
I found most of them except datanucleus-appengine-1.0.5.final.jar.
Taylor Leese
+2  A: 

They are now available at the maven-gae-plugin repository:

http://maven-gae-plugin.googlecode.com/svn/repository/

Taylor Leese
The GAE JAR's are now available in maven central: http://repo2.maven.org/maven2/com/google/appengine/
Taylor Leese