How do I get .jsp/.xhtml/.html files to trigger a compile/package goal in a Google App Engine + Maven + Eclipse setup? (actually it's the same for IntelliJ & Netbeans)
The .java files cause a compile goal just fine, which causes the target directory to update, which is then picked up by appengine:devserver, but nothing else works.
I've seen lots of people asking this, but no solution.
I'm using the simple GuestBook Maven archetype:
mvn archetype:generate -Dappengine-version=1.9.15 -Dapplication-id=your-app-id -Dfilter=com.google.appengine.archetypes:guestbook-archetype
Followed by:
mvn appengine:devserver
Eclipse Juno is setup to "build automatically", so touching a java file triggers the goal, just nothing else.
Frustrated!
UPDATE: I'm using the GPE for Juno EE.
-- shane