From: Konstantin P. (JIRA) <ji...@co...> - 2010-07-06 17:54:38
|
[ http://jira.codehaus.org/browse/XDP-249?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Konstantin Pribluda resolved XDP-249. ------------------------------------- Resolution: Won't Fix ... as this funtionality can be achieved by other means > Tag @hibernate.query with hibernate3 only generates hbm.xml with query tag in class level > ----------------------------------------------------------------------------------------- > > Key: XDP-249 > URL: http://jira.codehaus.org/browse/XDP-249 > Project: XDoclet 2 Plugins > Issue Type: Improvement > Components: hibernate, maven-plugin > Affects Versions: 1.0.5 > Environment: WinXP SP2, Hibernate 3.2.6, Maven2, JavaSE 6 > Reporter: Carlos David Sánchez > > I am using a @hibernate.query tag and maven2-xdoclet2-plugin, the generate-resources phase generates hbm.xml files with query tag into class tag. > Example: > <hibernate-mapping> > <class ...> > ...... > <query .../> > </class> > </hibernate-mapping> > It¡s possible to generate query definition inside hibernate-mapping tag?, like this: > <hibernate-mapping> > <class ...> > ...... > </class> > <query .../> > </hibernate-mapping> > Or something I am doing wrong? This is a fragment of my pom.xml: > <plugin> > <groupId>org.codehaus.xdoclet</groupId> > <artifactId>maven2-xdoclet2-plugin</artifactId> > <version>2.0.7</version> > <executions> > <execution> > <id>xdoclet</id> > <phase>generate-resources</phase> > <goals> > <goal>xdoclet</goal> > </goals> > </execution> > </executions> > <dependencies> > <dependency> > <groupId>org.codehaus.xdoclet</groupId> > <artifactId>xdoclet-plugin-qtags</artifactId> > <version>1.0.5</version> > </dependency> > <dependency> > <groupId>org.codehaus.xdoclet</groupId> > <artifactId>xdoclet-taglib-qtags</artifactId> > <version>1.0.5</version> > </dependency> > <dependency> > <groupId>org.codehaus.xdoclet</groupId> > <artifactId>xdoclet-plugin-hibernate</artifactId> > <version>1.0.5</version> > </dependency> > </dependencies> > <configuration> > <configs> > <config> > <includes>**/model/*.java</includes> > <components> > <component> > <classname>org.xdoclet.plugin.hibernate.HibernateConfigPlugin</classname> > <params> > <dialect>org.cad.custom.hibernate.dialect.PostgreSQLDialect</dialect> > <version>3.0</version> > <destdir>target/classes</destdir> > </params> > </component> > <component> > <classname>org.xdoclet.plugin.hibernate.HibernateMappingPlugin</classname> > <params> > <version>3.0</version> > <force>true</force> > <destdir>target/classes</destdir> > <encoding>UTF-8</encoding> > </params> > </component> > </components> > </config> > </configs> > </configuration> > </plugin> -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira |