首页 > 代码库 > 将本地jar包手动拷贝到Maven库中,在其他电脑上用Maven打包时出错
将本地jar包手动拷贝到Maven库中,在其他电脑上用Maven打包时出错
背景交代:在做图片水印时候引入了两个包文件,这两个包是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个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。