Hibernate JPA2.0和Maven

时间:2010-12-27 11:56:13

标签: hibernate maven jpa-2.0

我尝试构建简单的应用程序,我想使用spring,wicket和JPA2.0(Hibernate)。把所有这些放在一起我使用maven。我有hibernate的问题。下面是我的pom.xml

 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>comicsTest</groupId>
  <artifactId>comicsTest</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <repositories>
    <repository>
     <id>jboss-public-repository-group</id>
    <name>JBoss Public Repository Group</name>
    <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
    </repository>
  </repositories>


  <dependencies>
   <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>3.0.5.RELEASE</version>
    <exclusions>
     <exclusion>
      <artifactId>commons-logging</artifactId>
      <groupId>commons-logging</groupId>
     </exclusion>
    </exclusions>
   </dependency>
   <dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket</artifactId>
    <version>1.2.7</version>
   </dependency>
   <dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket-spring</artifactId>
    <version>1.2.7</version>
   </dependency>
   <dependency>
    <groupId>wicket</groupId>
    <artifactId>wicket-extensions</artifactId>
    <version>1.2.7</version>
   </dependency>
   <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-orm</artifactId>
    <version>3.0.5.RELEASE</version>
   </dependency>
   <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aspects</artifactId>
    <version>3.0.5.RELEASE</version>
   </dependency>
   <dependency>
    <groupId>org.hiberante</groupId>
    <artifactId>hibernate-entitymanager</artifactId>
    <version>3.6.0.Final</version>
   </dependency>
  </dependencies>
  <modules>
  </modules>
  <properties>
   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
</project>

我得到的只是

27.12.10 12:41:44 CET: Refreshing [/comicsTest/pom.xml]
27.12.10 12:41:48 CET: Downloaded https://repository.jboss.org/nexus/content/repositories/releases/org/hiberante/hibernate-entitymanager/3.6.0.Final/hibernate-entitymanager-3.6.0.Final.pom
27.12.10 12:41:48 CET: [WARN] The POM for org.hiberante:hibernate-entitymanager:jar:3.6.0.Final is missing, no dependency information available
27.12.10 12:41:50 CET: Downloaded https://repository.jboss.org/nexus/content/repositories/releases/org/hiberante/hibernate-entitymanager/3.6.0.Final/hibernate-entitymanager-3.6.0.Final.jar
27.12.10 12:41:50 CET: Missing artifact org.hiberante:hibernate-entitymanager:jar:3.6.0.Final:compile

上面的网址是正确的,文件在那里:(

1 个答案:

答案 0 :(得分:5)

org.hibernate在您的pom中拼错org.hiberante.