# 执行命令
mvn install:install-file -DgroupId=net.neoremind -DartifactId=fountain-common -Dversion=v1.0.0 -Dpackaging=jar -Dfile=E:\aspose-pdf-2.9.0-jdk16.jar
# 执行完,后续maven引用此包
<!-- https://mvnrepository.com/artifact/net.neoremind/fountain-common -->
<dependency>
<groupId>net.neoremind</groupId>
<artifactId>fountain-common</artifactId>
<version>1.0.0</version>
</dependency>
-DgroupId 指定groupId
-DartifactId 指定artifactId
-Dversion 指定版本
-Dpackaging 指定文件是jar的
-Dfile jar文件位置
适用于去网上找的jar,但是又在线上mvn没有的,然后把这个jar放入自己maven仓库里