1. 程式人生 > >解決maven專案中引用非maven工程中的jar

解決maven專案中引用非maven工程中的jar

執行如下命令,根據實際情況進行調整:

開啟cmd執行如下命令

格式程式碼:

mvn install:install-file -DgroupId=<your_group_name> -DartifactId=<your_artifact_name> -Dversion=<snapshot> -Dfile=<path_to_your_jar_file> -Dpackaging=jar -DgeneratePom=true


示例程式碼:

mvn install:install-file -DgroupId=com.bupt.liutong -DartifactId=report -Dversion=1.0 -Dfile=e:/report.jar -Dpackaging=jar -DgeneratePom=true





按照打印出來的pom目錄,開啟該檔案,將對應的引用新增到對應的專案pom中即可。