我试图向我的 Maven 项目添加休眠注释,但出现以下错误:
- ArtifactDescriptorException:无法读取hibernate-commons-annotations的工件描述符:hibernate-commons-annotations:jar:3.0.0.GA:ArtifactResolutionException:无法传输hibernate-commons-annotations:hibernate-commons-annotations:pom:3.0.0来自 http://repository.jboss.com/maven2/ 的 .GA 被缓存在本地存储库中,直到 JBoss 存储库的更新间隔已过或强制更新后,才会重新尝试解析。原始错误:无法将工件 hibernate->commons-annotations:hibernate-commons-annotations:pom:3.0.0.GA 从/到 JBoss 存储库 (http://repository.jboss.com/maven2/) 传输:拒绝访问>http://repository.jboss.com/maven2/hibernate-commons-annotations/hibernate-commons-annotations/3.0.0.GA/hibernate-commons-annotations-3.0.0.GA.pom。错误 > 代码 403,
- ArtifactDescriptorException:无法读取hibernate->annotations:hibernate-annotations:jar:3.3.0.GA的工件描述符:ArtifactResolutionException:无法从http:/传输hibernate-annotations:hibernate->annotations:pom:3.3.0.GA /repository.jboss.com/maven2/已缓存在本地存储库中,直到 JBoss 存储库的 >update 间隔已过或强制更新后才会重新尝试解析。原始错误:无法从/到 JBoss 存储库 (http://repository.jboss.com/maven2/) 传输工件 hibernate-annotations:hibernate->annotations:pom:3.3.0.GA: Access denied to http:// repository.jboss.com/maven2/hibernate->annotations/hibernate-annotations/3.3.0.GA/hibernate-annotations-3.3.0.GA.pom。错误代码 403,禁止
我使用此代码
<repository>
<id>JBoss repository</id>
<url>http://repository.jboss.com/maven2/</url>
</repository>
和
<!-- Hibernate annotation -->
<dependency>
<groupId>hibernate-annotations</groupId>
<artifactId>hibernate-annotations</artifactId>
<version>3.3.0.GA</version>
</dependency>
<dependency>
<groupId>hibernate-commons-annotations</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>3.0.0.GA</version>
</dependency>