Hi all, Another question: I began my tapestry project by following these instructions: http://tapestry.apache.org/tapestry5/quickstart/ . Then after running mvn package, I imported the .war file into eclipse and have been working with that project ever since. (I'm not entirely sure why I did it this way. I think I was more or less following the instructions from the Kolesnikov book). They key result of this is that my pom.xml file is located at WebContent/META-INF/maven/[project group]/[project name]/pom.xml.
Now I'm trying to get Hibernate working, and it seems like the easiest way to do this is by adding dependencies to the pom.xml file and then getting the Maven Eclipse plugin to magically pull down all of the new .jar files. Unfortunately it doesn't seem to be working that way. The plugin doesn't recognize that my project even has a pom.xml file, and it forces me add a new one (located at the project root by default) to get the .jars. So before I proceed further and muck things up even more, does anyone have any advice on how to get the maven eclipse plugin to recognize that my project is actually a maven project? Thanks for the help, John