添加本地jar文件到本地maven仓库

mvn install:install-file -Dfile=easyjweb-core-1.0-m3.jar -DgroupId=com.easyjf.easyjweb -DartifactId=easyjweb-core -Dversion=1.0-m3 -Dpackaging=jar

mvn install:install-file -Dfile=easyjweb-ext-1.0-m3.jar -DgroupId=com.easyjf.easyjweb -DartifactId=easyjweb-ext -Dversion=1.0-m3 -Dpackaging=jar



说明:

上面的第一条命令是把easyjweb-core-1.0-m3.jar传到了本地仓库中(假设本地仓库地址为:E:\app\m2\repository\),上传到仓库中的jar包名为easyjweb-core-1.0-m3.jar,目录结构为com/easyjf/easyjweb/easyjweb-core/1.0-m3/easyjweb-core-1.0-m3.jar

第二条命令是把easyjweb-ext-1.0-m3.jar传到了本地仓库中(假设本地仓库地址为:E:\app\m2\repository\),上传到仓库中的jar包名为easyjweb-ext-1.0-m3.jar,目录结构为com/easyjf/easyjweb/easyjweb-ext/1.0-m3/easyjweb-ext-1.0-m3.jar

你可能感兴趣的:(maven,ext)