Questions tagged [maven-gae-plugin]

Maven plugin for Google App Engine.

56 questions
1
vote
2 answers

Google App Engine Datanucleus enhencer

I have following class as superclass @Entity @MappedSuperclass public class Location implements LocationCapable { @Basic private Double latitude; @Basic private Double longitude; @Basic private List geocells; …
endryha
  • 7,166
  • 8
  • 40
  • 64
1
vote
1 answer

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 $(VERSION) app.yaml backend.yaml cron.yaml…
1
vote
2 answers

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 command is mvn appengine:run…
1
vote
2 answers

Updating Model in Gae datastore server

I have a profile class: class profile(db.Model): user = db.stringProperty() # Other properties ... access = db.ListProperty(db.keys) class apps(db.Model): name = db.StringProperty() The profile class was there for quiet some time, but we…
J Bourne
  • 1,409
  • 2
  • 14
  • 33
1
vote
2 answers

How can i use the newest app engine sdk for java (with maven or eclipse)?

I wanted to start using GAE with Java but i am still struggling with the tooling. My first try was using Eclipse with the "Google Plugin for Eclipse". I got it running, but when debugging i get the information, that my sdk is outdated. So i ask…
1
vote
0 answers

java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/persistence/EntityExistsException

I have an Entity class and am trying to create an endpoint-lib using maven. My POM File looks like this
Athreya
  • 11
  • 1
1
vote
0 answers

Class Not found for ContextLoaderListener in a GWT, GAE, Maven and Spring application

I am very new to the GWT(Google Web ToolKit), GAE(Google App Engine) stack. I am in need of writing this application and uploading it to GAE. The project uses maven as a build and deploy management tool. Here is the issue: 1) I import the project…
dharam
  • 7,882
  • 15
  • 65
  • 93
1
vote
0 answers

GAE : javax.security.auth.Subject.getSubject() cannot be invoked on local dev server

If I start my local google app engine dev server by using the App Engine maven plugin : mvn appengine:devserver and I try to launch a mapreduce job (using the appengine-mapreduce library), I get a java.security.AccessControlException: access denied…
jdramaix
  • 1,104
  • 6
  • 9
1
vote
1 answer

Android Studio: Unable to generate google cloud endpoint for JDO annotated Entity class

In android studio, I am experimenting with the GAE cloud endpoint and able to generate endpoints from JPA annotated entity classes. But if I define the entity class with JDO annotation, the option of generating endpoint is disabled (Tool-> Google…
1
vote
0 answers

google app engine 500 server error

I am currently testing my Google App Engine objectify database, and I am using a doGet servlet to respond to some saves and queries I make. Looking through other people's questions, it seems likely that my logs point to a maven repository error but…
Mark
  • 21
  • 3
1
vote
1 answer

Can i use the google app engine eclipse plugin with a maven gae project?

I migrated a GAE project to a Maven project with the official way (https://developers.google.com/appengine/docs/java/tools/maven) but I don't want to use Maven to deploy/use devserver. When I'm using the GAE Eclipse plugin I get an error: Could not…
1
vote
0 answers

JSF tags not processed

I'm trying to run a jsf 2.1 / spring 3.1 app on google app engine. It all starts up fine (on development server) without any exceptions. But every page I access, the jsf-tags are not processed. On pages without templates, all HTML is rendered.…
user1145874
  • 959
  • 3
  • 13
  • 21
1
vote
1 answer

Why is maven looking for missing directories during gae:deploy?

Goal Setup maven to deploy a google app engine application to a staging server. Problem Maven is looking for a directory that doesn't exist in local repository for the appengine-java-sdk Environment Eclipse Juno m2e 1.2.0 Embedded Google App…
1
vote
2 answers

Maven-gae-plugin 0.9.4: no version available for org.codehaus.plexus:plexus-archiver:jar-- Help me explain the solution of the bug

This bug was closed on github, https://github.com/maven-gae-plugin/maven-gae-plugin/issues/39 however i don't understand its fixing, and when i execute gae goal such as mvn gae:update it always gives me the same problem. could anyone explain the…
Mike
  • 3,515
  • 10
  • 44
  • 67
1
vote
3 answers

GAE/J This application does not exist (app_id=u'application-id')

I use maven-gae-plugin to deploy my app, it works find until i decide to deploy it to another app-id under different Google account. i met the "This applciation does not exist" problem. I found there are already some answers in StackOverflow, but…
Mike
  • 3,515
  • 10
  • 44
  • 67