Maven仓库的搭建

http://blog.csdn.net/xiao__gui/article/details/52625660

Maven仓库是有特定规则的目录结构. 目录结构由 仓库根目录 , groupId , artifactId , version组成, jar包放在version目录下面
如果仓库是自己使用, 仓库的地址就是 仓库根目录地址/groupid/artifactId/version/jar包名
如果是共多人使用, 就把仓库部署到网站下面, 则地址为 网站地址/groupid/artifactId/version/jar包名

原文地址:https://www.cnblogs.com/answercard/p/6609598.html