大家肯定遇到过想在pom文件中加入自己开发的依赖包,这些包肯定是不是在Maven仓库(http://repo1.maven.org/maven2/)的。
我们以非开源收费的Aspose为例,我们下载下来测试的aspose
放在D:\Develop\myjar文件夹里
使用cmd进行该文件夹
mvn install:install-file -Dfile=aspose-words-16.11.0-jdk16.jar -DgroupId=com.aspose -DartifactId=aspose-words -Dversion=16.11.0 -Dpackaging=jar
-Dfile是自己jar包的名字
-DgroupId是jar包的groupId
-DartifactId是jar包的artifactId