1.打开maven项目中的pom.xml文档,点击pom.xml标签
1.
2.到maven官网https://mvnrepository.com/查看是否有你想要的那个jar包
3.点击我们要的jar包名,进入以下界面选择版本
4.点击需要的版本,进入以下界面,添加下面的代码到pom.xml文档中的dependencies里面即可。
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.5</version>
</dependency>
5.重新执行mvn命令,项目就会自动包含需要的jar包了。