Lally Singh wrote: > > how do I get maven to do whatever needs to be done to process my hibernate > annotations? > >
If you are using java 5 annotations and maven 2: Nothing, aside from compiling with java 5 or better, homing hibernate and java persistence configuration files into src/main/resources directory, and obtaining the hibernate artifacts into your repository. This answer does not apply to javadoc annotations (i.e., source code generation via xdoclet) or maven 1. Annotations are a java language construct and are 'processed' by java compilation. The java compiler puts annotation data into the output class files for the hibernate libraries to read. John -- View this message in context: http://www.nabble.com/Eclipse%2C-Hibernate-Tools-tf3290726s177.html#a9162314 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
