Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
开发者_如何学JAVA Improve this questionI wanted to download the Hibernate Annotation Module at the hibernate website but I cant seem to find where the jar files are located.
I only see below links Hibernate Download Site http://imageshack.us/photo/my-images/192/hibernate.jpg/
Can somebody share with me where it is? I was able to download hibernate-distribution-3.6.6.Final core module but not the annotations
Thanks
If you using Maven you can add dependency of latest GA release.
<dependency>
<groupId>hibernate-annotations</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.2.1.GA</version>
</dependency>
Hibernate annotations is included in the core build now so you probably already have it.
精彩评论