I'm using m2eclipse and trying to learn some tapestry. I'm trying to update my project to pull some different resources from maven. (Or at least, I think that's what I'm trying to do).
Here's part of my pom.xml:
<dependency>
<groupId>org.apache.tapestry</groupId>
<artifactId>tapestry-hibernate</artifactId>
<version>${tapestry-release-version}</version>
</dependency>
The artifact id used to be tapestry-core, but the tutorial I'm using said to change it to tapestry-hibernate so I can use hibernate. I changed the pom.xml and saved it, but I'm not sure what command exactly I'm supposed to execute exactly. I tried using some of the plugin commands like "update dependencies", but I still don't have a hibernate.cfg.xml file generated, which I think I should have, right?