3

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.

Taylor Leese
  • 51,004
  • 28
  • 112
  • 141
  • FYI - The Maven GAE plugin repository should have them soon based on this issue: http://code.google.com/p/maven-gae-plugin/issues/detail?id=39&colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Version%20Summary – Taylor Leese Feb 13 '10 at 18:55

2 Answers2

2

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</url>
</repository>
cletus
  • 616,129
  • 168
  • 910
  • 942
2

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

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

Taylor Leese
  • 51,004
  • 28
  • 112
  • 141