將本地jar包手動拷貝到Maven庫中,在其他電腦上用Maven打包時出錯

來源:互聯網
上載者:User

背景交代:在做圖片浮水印時候引入了兩個包檔案,這兩個包是JDK內建的私人包,不能用Maven庫裡下載,因此筆者手動將rt和jce兩個工具jar檔案拷貝到本地的Maven庫中,如下圖


import com.sun.image.codec.jpeg.JPEGCodec;import com.sun.image.codec.jpeg.JPEGImageEncoder;
然後在pom設定檔裡寫上下面的配置

將jce和rt拷到如下路徑(rt類似)


然後項目在其他電腦上用Maven打包時候報錯如下:

Failed to execute goal on project : Could not resolve dependencies for project cs2c.nkscloudweb:nkscloudweb3:war:3.0: The following artifacts could not be resolved: maven-plugins:maven-cobertura-plugin:plugin:1.3, maven-plugins:maven-findbugs-plugin:plugin:1.3.1: Could not find artifact maven-plugins:maven-cobertura-plugin:plugin:1.3 in nexus (http://10.1.81.221:8081/nexus/content/groups/public) -> [Help 

最後的解決方案是:在他的電腦上配置如下路徑:

<dependency>            <groupId>rt</groupId>            <artifactId>rt</artifactId>            <version>1.0</version><systemPath>D:\maven\repositories\rt\rt\1.0\rt-1.0.jar</systemPath> </dependency> 

 
 


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.