I am using m2eclipse and trying to learn some tapestries. I am trying to update my project to extract some resources from maven. (Or at least I think I'm trying to do).
Here is part of my pom.xml:
<dependency> <groupId>org.apache.tapestry</groupId> <artifactId>tapestry-hibernate</artifactId> <version>${tapestry-release-version}</version> </dependency>
The artifact identifier used to create the tapestries, but the tutorial I'm using said to change it to a tapestry sleep mode so that I can use sleep mode. I modified pom.xml and saved it, but I'm not sure which command exactly I should execute for sure. I tried to use some of the plugin commands, such as "update dependencies", but I still do not have the hibernate.cfg.xml file, which I think should have been, right?
source share