一.修改setting.xml的配置为本地仓库地址
二.执行命令
mvn install:install-file "-Dfile=D:Workspace-idea-SpringCloudmavenmy_local_repositorylocalactivemq-all-5.6.0.jar" "-DgroupId=activemq" "-DartifactId=activemq5.6.0" "-Dversion=5.6.0" "-Dpackaging=jar"
命令解释:
(1).-Dfile=待安装的jar
(2).-DgroupId, -DartifactId, -Dversion:三个参数,就是指明了存放maven仓库(路径“D:Workspace-idea-SpringCloudmavenmy_local_repository”下)中的位置;
(3).-Dpackaging :猜测就是指明文件类型
三.pom.xml
<dependency>
<groupId>activemq</groupId>
<artifactId>activemq5.6.0</artifactId>
<version>5.6.0</version>
</dependency>