28 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
42
views
How do I set up app engine and gwt maven plugins for local development when using app engine legacy bundled services?
I'm trying to set up an older project that was using eclipse plugins for app engine and gwt. These plugins won't work moving foward and I'm now looking to set this up using eclipse and maven plugins ...
-1
votes
1
answer
69
views
appengine-maven-plugin execution erroring out because Dockerfile not found
I am trying to deploy a java 11 application to google cloud app engine flex environment. Following is my app.yaml file:
runtime: java11
env: flex
handlers:
- url: /.*
script: this field is required, ...
0
votes
1
answer
285
views
skip certain modules during deploy in multi-module maven java project on appengine w/ appengine-maven-plugin
I have a multi-module maven java project. In the parent pom:
<modules>
<module>core</module>
<module>batch-worker</module>
<module>be</module>
...
1
vote
1
answer
188
views
Cannot deploy Java WAR application without app.yml file on GAE
I have a SpringBoot Application ant it's deployed on Google App Engine, I deployed it many times before (158) using google cloud maven plugin, but today without any changes on my core nor deployment ...
6
votes
1
answer
408
views
Gifs(animations) work on Appengine but not on localhost with the same code by using blobstore
I'm using Blobstore to store GIF image files, which I then render as HTML <img> tags. Animated GIFs work fine when I deploy to a live instance of App Engine, but when I deploy to a local ...
0
votes
0
answers
229
views
mvn appengine:stage - standard environment - where does the automagical app.yaml come from?
I am using mvn and appengine-maven-plugin to stage and deploy my app engine standard project for java 8. This works locally, but the deployed project stopped working, and if I look at target/appengine-...
14
votes
3
answers
11k
views
How to add javax.activation.DataSource to App Engine devserver?
tl;dr: How do I add the javax.activation.DataSource dependency to a server run through the App Engine Maven plugin?
I'm using the App Engine Maven plugin to deploy to a local App Engine server, and I'...
0
votes
2
answers
3k
views
Google app engine- deploy using maven 2.0.0-rc1 is not working
Caused by: java.lang.IllegalArgumentException: Deployment projectId must be defined or configured to read from system state
1. Set <deploy.projectId>my-project-id</deploy.projectId>
2. Set ...
0
votes
1
answer
100
views
Standard app engine maven plugin appengine:run restarts spring boot application multiple times
I am facing weird issue with standard app engine and spring boot application generated using jhipster. When I am trying to run appengine:run on my local system, application is initiated by maven ...
1
vote
1
answer
397
views
Multivalued parameter for mvn appengine:deploy
I'm trying to execute a Maven goal which takes a parameter with multiple values (list of values). How can I do that?
In gcloud this can be done with gcloud app deploy --quiet --project $(PROJECT) -v $...
0
votes
1
answer
534
views
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 ...
1
vote
2
answers
547
views
Parsing error on app.yaml with AppEngine Maven plugin
I am trying to run a local (developer machine) Java AppEngine Standard Env server using the new Maven plugin (com.google.cloud.tools:appengine-maven-plugin:1.2.1) with Google Cloud SDK [148.0.1]. The ...
7
votes
2
answers
2k
views
Which App Engine Maven Plugin to use?
been working with Google App Engine lately and stumbled upon something that is a mystery to me, maybe you can clarify.
According to some of Google's own websites (https://cloud.google.com/appengine/...
1
vote
1
answer
2k
views
Error posting to URL 400 Bad Request when I try deploy to app engine
A few months ago my application was deploying perfectly to appengine but I tried to deploy it today but I got these errors in the log:
Beginning interaction for module default...
May 07, 2016 3:46:...
0
votes
1
answer
96
views
app staging using maven
I am building my war folder using
mvn clean install
And I am deploying the project using :
gcloud preview app deploy /{PATH}/appengine-staging/app.yaml /{PATH}/appengine-staging/index.yaml /{PATH}/...