hibernate - Maven and pom.xml -


i'm using m2eclipse , trying learn tapestry. i'm trying update project pull different resources maven. (or @ least, think that's i'm trying do).

here's part of pom.xml:

<dependency>             <groupid>org.apache.tapestry</groupid>             <artifactid>tapestry-hibernate</artifactid>             <version>${tapestry-release-version}</version>         </dependency> 

the artifact id used tapestry-core, tutorial i'm using said change tapestry-hibernate can use hibernate. changed pom.xml , saved it, i'm not sure command i'm supposed execute exactly. tried using of plugin commands "update dependencies", still don't have hibernate.cfg.xml file generated, think should have, right?

i changed pom.xml , saved it, i'm not sure command i'm supposed execute exactly.

m2eclipse should setup new dependencies (and download if necessary) after changed pom.xml without required action.

i tried using of plugin commands "update dependencies", still don't have hibernate.cfg.xml file generated, think should have, right?

no, hibernate.cfg.xml won't automagically generated because changed dependency (it possible generate hibernate.cfg.xml hibernate3-maven-plugin don't think using , it's not easy use).


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -