Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/359.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/matlab/16.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 缺少工件org.hibernate:hibernate:pom:3.3.2.GA_Java_Spring_Hibernate_Maven - Fatal编程技术网

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

Java 缺少工件org.hibernate:hibernate:pom:3.3.2.GA,java,spring,hibernate,maven,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>

在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>

org.hibernate
冬眠
3.3.2.GA
聚甲醛
编译
有什么问题吗?

应该是这样的

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

org.hibernate
冬眠核心
3.3.2.GA
聚甲醛
编译

工件ID是否需要为hibernate核心?