maven手动导入jar包到本地仓库,引用第三方jar
运行命令:
mvn install:install-file -Dfile=jar包的路径
-DgroupId=gruopId中的内容
-DartifactId=actifactId的内容
-Dversion=version的内容
-Dpackaging=jar
1.cmd进入
2.执行
mvn install:install-file -Dfile=E:\cloud_cms\mail-1.4.jar -DgroupId=javax.mail -DartifactId=mail -Dversion=1.4 -Dpackaging=jar
<dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency>
4.bulidpath后在pom.xml 添加第三方jar
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.11.269</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/aws-java-sdk-core-1.11.269.jar</systemPath>
</dependency>
相关链接:
https://www.jianshu.com/p/280c0f75a217
posted on 2019-12-31 11:03 Steven5007 阅读(694) 评论(0) 编辑 收藏 举报