Maven problems using GAE and DataNucleus
I'm having trouble fetching 2 artifacts in my Maven / Java / Google App Engine project :
-
com.google.appengine.orm: DataNucleus-AppEngine: jar: 1.0.7.final impact> - com.google.appengine: AppEngine-api-1.0-SDK: jar: 1.3.4
There's a similar question out there , but every answer brings me back to the same error message.
More details
I don't know if this is relevant, but instead of a version number, my original dependency for DataNucleus contains a variable. I am using Eclipse.
<groupId>org.datanucleus</groupId>
<artifactId>datanucleus-core</artifactId>
<version>${datanucleus.version}</version>
<scope>runtime</scope>
I have not included stack tracing in Maven for brevity. Please let me know if it helps post it. Thanks.
UPDATE
I managed to get the DataNucleus artifact by changing the version from 1.0.7.final to 1.0.6.final (check this repo ) and rolling back to AppEngine 1.3.3 (thanks @Taylor!). However, I still cannot find the repo for appengine-java-sdk: jar: 1.3.3 . No jar files hosted on Google Code .
Does anyone know where to find the appengine-java-sdk jar ?
a source to share
Version 1.3.4 of the App Engine SDK is not yet supported by the maven-gae plugin. See the question here .
Also, based on your last change to the question, you should NOT be using version 1.3.3. Rather, you should be using version 1.3.3.1 (see here ). In addition, the appengine-java-sdk banner is available in the maven-gae-plugin repository (see here ).
a source to share