Maven plugin for Google App Engine.
Questions tagged [maven-gae-plugin]
56 questions
0
votes
1 answer
maven-gae-plugin 0.9.2 is deploying with google app engine 1.5.2, but should be 1.6.1
mvn gae:deploy gave us the following "info":
[INFO]
[INFO] <<< maven-gae-plugin:0.9.2:deploy (default-cli) @ gk <<<
[INFO]
[INFO] --- maven-gae-plugin:0.9.2:deploy (default-cli) @ gk ---
[INFO] Updating Google App Engine Server...
There is a new…

Tom Fishman
- 1,716
- 6
- 22
- 36
0
votes
1 answer
GAE Static Resource Expiry
I have a pretty simple Java web app that follows the usual directory structure that Maven expects.
When I run the application locally ( mvn -D skipTests clean package appengine:run ) files which are requested from the css directory are given an…

DaveH
- 7,187
- 5
- 32
- 53
0
votes
1 answer
Run function after task retry limit reached google app engine
I have the code like below:
Queue queue = QueueFactory.getDefaultQueue();
queue.add(TaskOptions.Builder.withRetryOptions(
RetryOptions.Builder
.withTaskRetryLimit(0)));
With this code the task will…

CloudSeph
- 863
- 4
- 15
- 36
0
votes
1 answer
How can I debug with the Cloud-SDK-based Maven App Engine plugin?
I'd like to debug with the Cloud-SDK Based Maven plugin (com.google.cloud.tools::appengine-maven-plugin v. 1.3.0).
I run the goal appengine:run in Eclipse in Debug, but this does not put me into Debug mode, e.g. stopping on breakpoints.
I can…

Joshua Fox
- 18,704
- 23
- 87
- 147
0
votes
1 answer
How to Manage Entity relatinships with hibernate in Google App engine
When I am having only 1 onetoMany relation code works fine. When I declare more that 1 @onetomany relation in an entity its breaks saying : org.hibernate.exception.SQLGrammarException: Unknown column 'userregist0_.jdoDetachedState' in 'field list' …

Archit
- 207
- 1
- 4
- 13
0
votes
1 answer
Why can't I deploy to app engine using maven-gae-plugin?
I'm trying to deploy my maven project for the first time.
Using the maven-gae-plugin, as was set up in an archetype project, so it should work. However I get this error:
[ERROR] Failed to execute goal
net.kindleit:maven-gae-plugin:0.9.6:deploy…

slugmandrew
- 1,776
- 2
- 25
- 45
0
votes
2 answers
Maven plugin execution change Maven properties or skip build lifecycle steps
When I build my application with maven, I run mvn clean install. As a part of the install lifecycle, I run appengine:devserver_start from Google's GAE Maven plugin. This appears to be already bound to a step in the lifecycle and therefore it reruns…

ecbrodie
- 11,246
- 21
- 71
- 120
0
votes
1 answer
Google App Engine split frontend and backend
Depending on the shape Google App Engine is in, my app can take too long to start up:
Caused by: com.google.apphosting.api.DeadlineExceededException: This request (d872b776bcbbfd27) started at 2012/12/04 17:35:28.861 UTC and was still executing at…

Stefan Haebler
- 51
- 4
0
votes
1 answer
DataNucleus libraries and maven-gae-plugin
I'm using maven-gae-plugin to manage a Google AppEngine project but I don't know how to include the libraries required to use JPA.
Google's documentation says:
The classpath must contain the JARs 'datanucleus-core-*.jar', 'datanucleus-jpa-*',…

mariosangiorgio
- 5,520
- 4
- 32
- 46
0
votes
1 answer
Datastore Location with Google App Engine / Java
How can I customize the location of the datastore file while working with GAE/J.
The option --datastore_path doesn't seem to work with GAE/J.
And if it is possible, what option do I use in the maven-gae-plugin.

gvaish
- 9,374
- 3
- 38
- 43
0
votes
1 answer
Maven - Dependency Resolution Failed, Package exists in local repo
I am using maven-gae-plugin from http://code.google.com/p/maven-gae-plugin/ to create a multi-module project using inheritance (parent-project reference)
The structure that I have is as below:
|
`-- pom.xml
|-- base-api-project (packaging=jar)
| …

gvaish
- 9,374
- 3
- 38
- 43