[appengine-java] Re: eclipse plugin and maven?

2009-12-23 Thread drone
maven-gae-plugin now has it's own mailing list, so all my further messages regarding this and other maven related issues will be posted there: I tried setup mentioned above and failed - details are posted here: http://groups.google.com/group/maven-gae-plugin/browse_thread/thread/497e2dd1ee252650

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-18 Thread Miguel Méndez
Thanks for the response drone. We are trying to determine what we can do to make this smoother. I think that a lot of people would like to see the plugin relax the war folder constraint. Specifically allowing a user to specify an arbitrary path to their war folder. On Fri, Dec 18, 2009 at

[appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread a.maza
On 14 Dez., 10:35, drone andr...@gmail.com wrote: I see now, that they can be found inhttp://www.mvnsearch.org/maven2/ repository, so I will try updating maven-gae-plugin as soon as I have some free time. Are you sure? I just checked that but I've found no appengine-related libs there. --

[appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread datanucleus
Are you sure? I just checked that but I've found no appengine-related libs there. http://www.mvnsearch.org/maven2/com/google/appengine/ -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-15 Thread Miguel Méndez
Here are somethings, that I'm aware of, that make it hard to use maven and the Google Plugin for Eclipse together: 1. Require users to use an SDK (classpath container in eclipse) instead of regular jars 2. Force the war directory to be named war and appear at the project root 3. No

[appengine-java] Re: eclipse plugin and maven?

2009-12-14 Thread drone
Regarding maven-gae-plugin - for now, the best way to adopt your application is to copy/paste pom parts from one of the example projects (plain jsp or gwt). It's not trivial, but not impossible. Also I tried to document every piece of pom.xml there. However it is true, that this plugin has become

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-13 Thread Rusty Wright
Thanks; I looked at that as well. If I remember correctly it hasn't been updated since May of this year. Yoichi wrote: Google App Engine has a Maven Plugin project. http://code.google.com/p/maven-gae-plugin/ Unfortunately there is no manual and I can't figure out how to use it, what

[appengine-java] Re: eclipse plugin and maven?

2009-12-12 Thread Philippe Marschall
On Dec 5, 7:45 pm, Rusty Wright rwright.li...@gmail.com wrote: Is it possible to use the GAE Eclipse plugin if you're using Maven?  Maven uses a different directory structure so I'm guessing that's why the GAE plugin doesn't recognize the project as a GAE web app. Google seems determined

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-12 Thread Rusty Wright
I'm getting google stuff from repos. Here's my dependency pom for gae stuff (see http://www.sonatype.com/people/2009/10/maven-tips-and-tricks-grouping-dependencies/): ?xml version=1.0 encoding=ISO-8859-1 ? project xmlns=http://maven.apache.org/POM/4.0.0;

Re: [appengine-java] Re: eclipse plugin and maven?

2009-12-10 Thread Rusty Wright
Ok, thanks. I figured out how to have maven do the upload by using the exec plugin. So now I can do a mvn clean package exec:exec and it does it all in one go. What I'd really like is to be able to run the test jetty on my desktop. build plugins plugin

[appengine-java] Re: eclipse plugin and maven?

2009-12-07 Thread McBeelen
Rusty, Currently the Google Plugin works with a hardcoded path to the webapp- directory. An issue has already been filles (http://code.google.com/p/ googleappengine/issues/detail?id=1515) and accepted, so I guess it will be fixed anytime soon. I still use Eclipse to write my application, build