Maven项目中如何引入本地的jar包
准备工作
1.自己提前准备本地的jar包 , 例如:jar包位置:D:/soft/ip-info-2.2.1.jar
解决办法
方法一 、 直接在pom文件中添加
<dependency>
<groupId>com.jthinking.common</groupId>
<artifactId>ip-info</artifactId>
<version>2.2.1</version>
<scope>system</scope>
<systemPath>D:/soft/ip-info-2.2.1.jar</systemPath>
</dependency>
方法二、手动通过添加jar包的方式加入
- 把jar包下载到本地,不知道jar包的groupId, artifactId等信息,则可采用此方法。
新建lib包,之后导入(直接build path)(idea:File→project structure→libraries→+jar包 , 选择java,然后选择本地的jar即可)
文章来源地址https://www.toymoban.com/news/detail-630187.html
文章来源:https://www.toymoban.com/news/detail-630187.html
到了这里,关于Maven项目中如何引入本地的jar包的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!