1 回答
TA贡献1827条经验 获得超4个赞
在 maven 项目中,所有依赖项都由 pom.xml 处理。我们可以使用 maven 存储库来下载依赖项,也可以从本地目录添加它。以下可以将 jar 安装到本地 maven 存储库。
参考资料: http ://maven.apache.org/general.html#importing-jars https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html
mvn install:install-file
-Dfile=<path-to-file>
-DgroupId=<group-id>
-DartifactId=<artifact-id>
-Dversion=<version>
-Dpackaging=<packaging>
-DgeneratePom=true
Where: <path-to-file> the path to the file to load
<group-id> the group that the file should be registered under
<artifact-id> the artifact name for the file
<version> the version of the file
<packaging> the packaging of the file e.g. jar
添加回答
举报