Beginner |
|
Joined: Wed Oct 01, 2003 3:57 am Posts: 33 Location: Alpharetta, Georgia
|
Be sure to include maven-hibernate-module in your dependencies list, you'll need to include the cglib that came with your hibernate install instead of the one on ibiblio (cglib-full-2.0.2 in my setup)
<dependency>
<groupId>xdoclet</groupId>
<artifactId>xdoclet</artifactId>
<version>1.2.1</version>
<url>http://www.ibiblio.org/maven</url>
</dependency>
<dependency>
<groupId>xdoclet</groupId>
<artifactId>xjavadoc</artifactId>
<version>1.0.3</version>
<url>http://xdoclet.sourceforge.net</url>
</dependency>
<dependency>
<groupId>xdoclet</groupId>
<artifactId>xdoclet-hibernate-module</artifactId>
<version>1.2.1</version>
<url>http://www.ibiblio.org/maven</url>
</dependency>
<dependency>
<groupId>xdoclet</groupId>
<artifactId>xdoclet-objectweb-module</artifactId>
<version>1.2.1</version>
<url>http://www.ibiblio.org/maven</url>
</dependency>
|
|