赞
踩
工作开发中我经常发现一个问题,即使把jar包等放入了repository也没办法成功扫描进来,具体问题体现在pom.xml中爆红提示not found,属实傻逼,直到老员工教我把jar包放到自己的测试项目里再通过制定本地路径的方式导入才成功。
由图可知我把jar放在resources的自建jar包下,然后 在pom.xml中完成导入。
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/xxxxx.jar</systemPath>
以后把上面的xxxx改成jar包名就可以了。
<dependency>
<groupId>ojdbc</groupId>
<artifactId>ojdbc</artifactId>
<scope>system</scope>
<version>19.3.0.0</version>
<systemPath>${project.basedir}/src/main/resources/jar/ojdbc8.jar</systemPath>
</dependency>
</dependencies>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。