您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“怎么實現(xiàn)將本地jar添加到Maven倉庫”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
以下面pom.xml依賴的jar包為例:
實際項目中pom.xml依賴寫法:
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>3.1.0.RELEASE</version> </dependency>
Maven 安裝 JAR 包的命令是:
mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar
例如我的這個spring-context-support-3.1.0.RELEASE.jar 文件放在了"D:\mvn\"中
則命令為:
mvn install:install-file -Dfile=D:\mvn\spring-context-support-3.1.0.RELEASE.jar -DgroupId=org.springframework -DartifactId=spring-context-support -Dversion=3.1.0.RELEASE -Dpackaging=jar
注意:任何路徑和名稱不要有中文和空格,以防出現(xiàn)莫名其妙的錯誤。
還可以解決本地倉庫是從別人那邊復制的,但是需要的jar包中央倉庫不存在,導致的執(zhí)行package時出現(xiàn)以下異常
Failed to execute goal on project relayserver: Could not resolve dependencies for project com.xxx:xxx:war:1.0-SNAPSHOT: Failure to find xxx.xxx:xxx:jar:1.0 in http://maven.aliyun
.com/nexus/content/groups/public was cached in the local repository, resolution will not be reattempted until the update interval of nexus-aliyun has elapsed or updates are forced
假設將包htmlparser.jar放入了項目下的lib目錄中 :
-> ${project}/lib/htmlparser.jar
則pom.xml文件中依賴可以如下:
<dependency> <groupId>com.htmlparser</groupId> <artifactId>htmlparser</artifactId> <version>2.0</version> <scope>system</scope> <systemPath>${project.basedir}/lib/htmlparser.jar</systemPath> </dependency>
手動向maven庫里面添加jar包,要以管理員身份進行添加,在jar包目錄打開cmd
mvn install:install-file -Dfile=文件絕對路徑 -DgroupId=maven倉庫下面的路徑 -DartifactId=jar包名-Dversion=jar包版本 -Dpackaging=jar -DgeneratePom=true
例如:
mvn install:install-file -Dfile=E:/quartz-2.2.1.jar -DgroupId=org.quartz-scheduler -DartifactId=quertz -Dversion=2.2.1 -Dpackaging=jar -DgeneratePom=true
“怎么實現(xiàn)將本地jar添加到Maven倉庫”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。