参考文献:
http://www.blogjava.net/fancydeepin/archive/2012/06/12/380605.html (Maven 手动添加 JAR 包到本地仓库)
http://www.yiibai.com/maven/include-library-manully-into-maven-local-repository.html (定制库到Maven本地资源库)
常用的Maven仓:http://mvnrepository.com/
我们进入Maven仓下载一个jar包
可以看到下面有关于maven的配置,给出这个 jar 包的 groupId,artifactId,version信息。这些信息是不需要我们去修改的。
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>
Maven 安装 JAR 包的命令:
mvn install:install-file