| Categories | CategoriesHibernate Data ORM | 
|---|---|
| GroupId | GroupIdorg.hibernate | 
| ArtifactId | ArtifactIdhibernate-annotations | 
| Version | Version3.5.1-Final | 
| Type | Typejar | 
<!-- https://jarcasting.com/artifacts/org.hibernate/hibernate-annotations/ -->
<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-annotations</artifactId>
    <version>3.5.1-Final</version>
</dependency>// https://jarcasting.com/artifacts/org.hibernate/hibernate-annotations/
implementation 'org.hibernate:hibernate-annotations:3.5.1-Final'// https://jarcasting.com/artifacts/org.hibernate/hibernate-annotations/
implementation ("org.hibernate:hibernate-annotations:3.5.1-Final")'org.hibernate:hibernate-annotations:jar:3.5.1-Final'<dependency org="org.hibernate" name="hibernate-annotations" rev="3.5.1-Final">
  <artifact name="hibernate-annotations" type="jar" />
</dependency>@Grapes(
@Grab(group='org.hibernate', module='hibernate-annotations', version='3.5.1-Final')
)libraryDependencies += "org.hibernate" % "hibernate-annotations" % "3.5.1-Final"[org.hibernate/hibernate-annotations "3.5.1-Final"]