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?