缺少工件org.hibernate:hibernate:pom:3.3.2.GA

时间:2016-06-22 15:10:44

标签: java spring hibernate maven

在我的spring应用程序的pom.xml中,当我将鼠标悬停在其上以查看问题时,我收到此错误

Missing artifact org.hibernate:hibernate:pom:3.3.2.GA

这是xml声明

<dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate</artifactId>
            <version>3.3.2.GA</version>
            <type>pom</type>
            <scope>compile</scope>
        </dependency>

可能出错?

1 个答案:

答案 0 :(得分:1)

应该是

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>3.3.2.GA</version>
    <type>pom</type>
    <scope>compile</scope>
</dependency>