Questions tagged [appengine-maven-plugin]

Questions about either of the Google Maven plugins for App Engine and using the Jetty Maven plugin in conjunction with an App Engine project.

There are two appengine-maven-plugins that simplify development and add local debugging & deployment to Apache Maven. A plugin (docs) (github) based on the App Engine Java SDK for App Engine Standard, and a single integrated plugin (github) based on the Google Cloud SDK for both App Engine Standard (docs) and Flexible (docs). App Engine Flexible uses the Jetty Plugin for local debugging.

26 questions
1
vote
1 answer

Can't get appengine:devserver_stop to work on Windows 2012 server

On my Windows 2012 server, I can run "mvn appengine:devserver_start" without any problems. When I run "mvn appengine:devserver_stop", it says "Stopping the development server" then "BUILD SUCCESS" but the process remains running and I have to kill…
Kyle Baley
  • 580
  • 1
  • 5
  • 16
0
votes
1 answer

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: core batch-worker be scheduler migrations Both the…
0
votes
0 answers

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-staging/app.yaml there are some mystery…
tgreiser
  • 393
  • 3
  • 13
0
votes
2 answers

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 my-project-id 2. Set APPENGINE_CONFIG to use…
Vijay Bhushan
  • 173
  • 3
  • 11
0
votes
1 answer

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 plugin multiple times and then it fails as datasource…
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…
0
votes
1 answer

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}/appengine-staging/cron.yaml --version=version-7…
0
votes
2 answers

Appengine Maven Project run as wtp on local server issue

i have been trying to run a maven project as dynamic web project in local server to get hot re-deployment feature, which is currently not available appengine maven plugin with eclipse i referred :…
0
votes
1 answer

how to override a maven mojo's "@execute phase"?

I'm using the appengine-maven-plugin, and having a problem with its "update" goal -- it's executing the "package" phase as a prerequisite: /** * @goal update * @execute phase="package" */ public class Update extends AbstractAppCfgMojo { …
Andy Dennie
  • 6,012
  • 2
  • 32
  • 51
0
votes
3 answers

appengine-maven-plugin versus maven-android-plugin

I'm trying to use Google Cloud Endpoints with Android client, built by Maven. The problem is that appengine-maven-plugin v1.8.3+ require Maven v3.1.0+ [ERROR] Failed to execute goal com.google.appengine:appengine-maven-…
0
votes
1 answer

How to tell 'appengine-maven-plugin' not to use oauth2 for deploys to appengine?

We're switching from the unofficial 'kidleit' maven plugin to use the official "appengine-maven-plugin" http://code.google.com/p/appengine-maven-plugin/ Our application is not new, but when deploying now, we get the error: 404 Not Found This…
Cuga
  • 17,668
  • 31
  • 111
  • 166
1
2