怎么在maven中导入jar包
程序员文章站
2022-05-28 13:00:28
...
使用maven命令安装
1、查看maven的版本信息
mvn -v
2、添加进项目
mvn install:install-file -Dfile=jar文件的绝对路径 -DgroupId=com.luo -DartifactId=MPHelper -Dversion=1.0 -Dpackaging=jar
3、使用
<dependency>
<groupId>com.luo</groupId>
<artifactId>MPHelper</artifactId>
<version>1.0</version>
</dependency>