I have this declaration in my pom.xml:

<repositories>
    <repository>
        <id>jboss-repo</id>
        <name>jboss repository</name>
        <url>https://repository.jboss.org/nexus/content/groups/public</url>
    </repository>
</repositories>

So, when I try to update my project to use the latest version of the Google App Engine SDK (1.5.3), I get this error message from Maven on the command line:

Downloading: https://repository.jboss.org/nexus/content/groups/public/com/google/appengine/appengine-api-1.0-sdk/1.5.3/appengine-api-1
.0-sdk-1.5.3.jar
[INFO] Unable to find resource 'com.google.appengine:appengine-api-1.0-sdk:jar:1.5.3' in repository jboss-repo (https://repository.jbo
ss.org/nexus/content/groups/public)
Downloading: http://repo1.maven.org/maven2/com/google/appengine/appengine-api-1.0-sdk/1.5.3/appengine-api-1.0-sdk-1.5.3.jar
[INFO] Unable to find resource 'com.google.appengine:appengine-api-1.0-sdk:jar:1.5.3' in repository central (http://repo1.maven.org/ma
ven2)

This seems to mean that the repository has not been updated with the latest version of the App Engine SDK.

So, is it possible for anyone to update this public repository and add the latest version?

Or is it just a matter of having to wait for whoever is responsible for doing so to get around to it?

link|improve this question
feedback

closed as too localized by casperOne Mar 27 at 16:23

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

4 Answers

up vote 0 down vote accepted

Google is responsible for getting the JAR's into the central maven repository and that usually happens within a few days of the release of a new version. The JBoss repository is not necessary for the GAE artifacts.

Last I heard here from David Chandler (Google) was that there was an issue with the original 1.5.3 JAR so it was taking some extra time to get them into central.

Per David:

Not in Central yet. There was a problem found with the 1.5.3 Java SDK so I'm waiting for the final version to push to Central.

link|improve this answer
Thanks, Taylor! – Saffrey Glover Aug 19 '11 at 23:15
feedback

Why are you using the JBoss repo for GAE? GAE artifacts are in central, and if anything, I'd expect them to show up in the oss.sonatype.org Nexus server, but neither of those have 1.5.3 yet either.

link|improve this answer
I misunderstood something. I'm using the JBoss repo for Hibernate Validator and sontatype for GAE. Sorry I don't have the privilege yet to give you an upvote but your answer was helpful. Thanks. – Saffrey Glover Aug 19 '11 at 23:22
feedback

What artifacts are you trying to get?

You can't download the sdk directly from maven. You have to download the individual sdk dependencies, i.e. appengine-tools, appengine-api and appengine-local-runtime-shared.

Thanks

link|improve this answer
That is not true. The GAE artifacts are in the central maven repo. – Taylor Leese Aug 19 '11 at 20:16
feedback

You would want to remind the SDK developers to post the latest version to Maven Central - except they already have been reminded.

As noted earlier, don't expect anyone else to post to JBoss's repo.

link|improve this answer
Your second link is very interesting. Sorry I can't vote you up. – Saffrey Glover Aug 19 '11 at 23:20
@Saffrey, true, but you can star the issue over at google code! – Ed Staub Aug 20 '11 at 1:45
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.