0

当我尝试使用 eclipse pom 编辑器查找休眠 4.1.0 时,我只能找到 3.6.0 版本,我正在寻找 >4.0.0。

Hire 是我的 pom.xml 文件:

<modelVersion>4.0.0</modelVersion>
<groupId>dk.janth.simpel-maven-spring</groupId>
<artifactId>Simpel-maven-spring-projekt</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Simpel maven spring projekt</name>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.0</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>
    </plugins>
</build>
4

2 回答 2

1

将此添加为依赖项,您应该一切顺利。

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>4.1.7.Final</version>
</dependency>
于 2013-03-21T11:28:51.347 回答
1

在查找工件的最新版本时,Eclipse 并不总是可靠的,但我认为,在您的情况下,您会查找错误的 artifactId。

大多数工件都可以在 maven Central 上找到,我们可以在其中搜索并获取 xml 片段以添加依赖项。

For hibernate: visit search.maven.org, enter "hibernate-core" (not: hibernate) and do a search. At the moment I'm writing that answer, the top result is hibernate-core, Version 4.2.0.Final. Click on that version number (or the link here in this answer, which is the same) and you'll find a page with all dependency information ready to be copied and pasted into your pom.

于 2013-03-21T12:54:26.687 回答