jeecg_scott 发表于 2013-9-9 10:17:59

maven管理项目如何查找jar依赖

对于初学maven的人来说刚开始会有个困惑,那就是怎么知道依赖的jar的groupId和atrifactId是什么,比如要依赖mybatis,会在pom.xml中配置如下:Xml代码http://liu400liu.iteye.com/images/icon_star.png


[*]<dependency>
[*]    <groupId>org.mybatis</groupId>
[*]    <artifactId>mybatis</artifactId>
[*]    <version>3.0.5</version>
[*]</dependency>


那怎么知道groupId是org.mybatis,artifactId是mybatis呢。方法很简单,可以到maven的官网查询,打开如下网址,查询框中输入mybatis
http://search.maven.org/#browse
http://dl.iteye.com/upload/picture/pic/100533/4d4738f8-7923-3713-b9ae-54ecba66a5a6.jpg
选择你要的版本,进去就可以看到你想要的了
http://liu400liu.iteye.com/upload/picture/pic/100535/1b0ccf4b-43aa-3572-916f-40e31bcdb11b.jpg
页: [1]
查看完整版本: maven管理项目如何查找jar依赖