简体   繁体   English

为什么最新的hibernate不在maven中央存储库中?

[英]Why latest hibernate does not in the maven central repository?

I cannot find 3.5.0-Final on the maven central repository for hibernate. 我在hibernate的maven中央存储库中找不到3.5.0-Final。 Also, where to get 3.6.0-Final? 另外,在哪里获得3.6.0-决赛?

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. JBoss已经开始在JBoss社区博客上发布与Maven central同步他们自己的repo,因此现在可以使用hibernate工件而无需将JBoss存储库添加到pom.xml或存储库管理器。

Search result for hibernate-core : 搜寻结果hibernate-core

搜索结果为hibernate-core

To add the Hibernate Core 3.6.3 to your project, just add the following snippet to your pom: 要将Hibernate Core 3.6.3添加到您的项目中,只需将以下代码段添加到您的pom:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 @Repository 和@EnableJpaRepositories 都不适用于最新的 Hibernate 和 Spring - @Repository and @EnableJpaRepositories both not working on latest Hibernate and Spring 为什么用 Maven 和 Hibernate 设置一个简单的项目会失败? - Why does the setup of a simple project with Maven and Hibernate fail? Maven 尝试从 Maven 中心获取shrinkwrap-bom,而不是配置的存储库 - Maven tries to fetch shrinkwrap-bom from maven central, instead of configured repository 为什么现有的Maven存储库丢失了? - Why existing Maven repository is missing? Maven / Hibernate —为什么在ConstraintViolationException上出现NoClassDefFoundError? - Maven / Hibernate — why NoClassDefFoundError on ConstraintViolationException? 最新的休眠 (5) 是否适用于数组类型? - Does latest hibernate (5) work with array types? 如何使用Maven获取最新的Hibernate版本? - How can I use Maven to get the latest Hibernate release? 为什么 Spring 批处理多线程步骤会中断 ItemProcessor 中的附加存储库 hibernate 查询? - Why does Spring batch multithreaded step break additional repository hibernate queries in ItemProcessor? 为什么 Maven 要使用 javax.persistence 而不是替代的休眠版本 - Why does Maven want to use javax.persistence instead of the alternative hibernate version 为什么 Hibernate 抱怨无法加载身份验证 DLL,即使它在 Maven 中配置? - Why does Hibernate complain about being unable to load the authentication DLL even though its configured in Maven?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM