How can I use Maven to get the latest Hibernate release?

前端 未结 7 1784
感情败类
感情败类 2020-12-13 04:15

I am having trouble getting the latest release of Hibernate via Maven dependency. It appears that the latest I can fetch from a Maven central repository is 3.2.6.GA, and I

7条回答
  •  伪装坚强ぢ
    2020-12-13 04:54

    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:

    search result for hibernate-core

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

    
        org.hibernate
        hibernate-core
        3.6.3.Final
    
    

提交回复
热议问题