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

前端 未结 7 1782
感情败类
感情败类 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:49

    You can use dependance in your pom.xml

    
                org.hibernate
                hibernate
                3.2.6.ga
            
            
                org.hibernate
                hibernate-annotations
                3.3.1.GA
            
    

提交回复
热议问题