开发者

Why latest hibernate does not in the maven central repository?

开发者 https://www.devze.com 2023-02-16 06:36 出处:网络
I cannot find 3.5.0-Final on the maven central repository for 开发者_如何转开发hibernate. Also, where to get 3.6.0-Final?I found it at https://repository.jboss.org/nexus/content/repositories/public/or

I cannot find 3.5.0-Final on the maven central repository for 开发者_如何转开发hibernate. Also, where to get 3.6.0-Final?


I found it at https://repository.jboss.org/nexus/content/repositories/public/org/hibernate/hibernate-parent/3.6.0.Final/


JBoss have started synchronising their own repo with Maven central as posted on the JBoss community blog , therefore hibernate artifacts are now available without the need to add the JBoss repository to your pom.xml or repository manager.

Search result for hibernate-core:

Why latest hibernate does not in the maven central repository?

To add the Hibernate Core 3.6.3 to your project, just add the following snippet to your pom:

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>3.6.3.Final</version>
</dependency>
0

精彩评论

暂无评论...
验证码 换一张
取 消