maven学习笔记-----jar查找groupid、artifactid

在pom.xml文件中加入我们需要jar包的依赖,往往不知道是哪个目录下的,也就是groupid是什么?解决方法如下

http://mvnrepository.com/登录该网站,输入你想引入的jar包,然后根据结果集点击进去,

举例比如说hibernate-commons-annotations,点击进去看到页面最上面一行如下所示:

home » org.hibernate » hibernate-commons-annotations

home就是代表你本地仓库的目录,org.hibernate就是groupid, hibernate-commons-annotations就是你的artifactid

你可能感兴趣的:(Maven)