标签:
今天尝试通过Maven导入Hibernate,但一直有问题,jar无法下载。
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.5.4-Final</version> </dependency>
去Maven仓库上去找,发现只有pom文件,没有jar包。
对比别人的配置之后,发现要加上<type>pom</type>
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate</artifactId> <version>3.5.4-Final</version> <type>pom</type> </dependency>
这样就可以正常使用了。具体差别需要再研究。
标签:
原文地址:http://www.cnblogs.com/funnybear/p/5930849.html