构建问题 Spring 3 -hibernate 3 项目

发布于 2024-12-11 03:42:41 字数 640 浏览 0 评论 0原文

我有一个简单的 spring3、hibernate 3 项目。当我尝试使用 Maven 构建项目时,出现以下错误。

下载: http://repo1.maven.org/maven2/org/hibernate/hibernate-entitymanager/3.3.2.ga/hibernate-entitymanager-3.3.2.ga.jar [信息] 无法在存储库中央找到资源“org.hibernate:hibernate-entitymanager:jar:3.3.2.ga”(http://repo1.maven.org/maven2) [信息] 无法解决工件。

缺少:

1) org.hibernate:hibernate-entitymanager:jar:3.3.2.ga

任何人都知道问题是什么,我在 POM.xml 中放置了错误的内容。

如果我下载了 jar 文件,我如何通过 eclipse

Help 添加到 Maven 是非常值得赞赏的, 维克斯

I have a simple spring3,hibernate 3 project.When am trying to build the project using Maven i got the following errors.

Downloading: http://repo1.maven.org/maven2/org/hibernate/hibernate-entitymanager/3.3.2.ga/hibernate-entitymanager-3.3.2.ga.jar
[INFO] Unable to find resource 'org.hibernate:hibernate-entitymanager:jar:3.3.2.ga' in repository central (http://repo1.maven.org/maven2)
[INFO] Failed to resolve artifact.

Missing:

1) org.hibernate:hibernate-entitymanager:jar:3.3.2.ga

Anybody know what is the issue, i put anything wrong in my POM.xml.

If i downloaded the jar file, how i added to Maven through my eclipse

Help is highly appreciated,
VKS

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苄①跕圉湢 2024-12-18 03:42:41

您可以使用 http://mvnrepository.com 来搜索 hibernate-entitymanager。您的版本如下所示:请注意 GA 中的大写...

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-entitymanager</artifactId>
    <version>3.3.2.GA</version>
</dependency>

You could use http://mvnrepository.com to search for hibernate-entitymanager. Your version looks like this: Do note the upper case in GA ...

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-entitymanager</artifactId>
    <version>3.3.2.GA</version>
</dependency>
痴情换悲伤 2024-12-18 03:42:41

对于休眠,我们使用以下存储库:

https://repository.jboss.org/nexus/content /repositories/releases/

尝试将其添加到您的 pom 中:

<repository>
     <id>jboss.org</id>
     <name>JBoss Repository</name>
     <url>https://repository.jboss.org/nexus/content/repositories/releases</url>
</repository>

For hibernate we use following repository:

https://repository.jboss.org/nexus/content/repositories/releases/

Try adding this to your pom:

<repository>
     <id>jboss.org</id>
     <name>JBoss Repository</name>
     <url>https://repository.jboss.org/nexus/content/repositories/releases</url>
</repository>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文