目录
有很多jar包我们在maven远程仓库中无法下载时,需要在项目中添加依赖怎么处理呢?
第一步:
将jar包放到放到项目resource
下lib
文件夹中,如无此文件夹,请先创建,再将jar放进去
<!--以下内存根据实际情况自定义填写-->
<dependency>
<groupId>org.demo</groupId>
<artifactId>demo-core</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/libs/demo.jar</systemPath>
</dependency>
第二步:
添加完成后我们此时ide已经可以正常的进行获取包内的文件,并进行开发,但是我们打包后发现找不到类,此时我们需要在插件配置项添加如下代码.
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<!--解决本地jar包打不进jar的问题-->
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
我们在重新打包使用 mvn clean package -Dmaven.test.skip=true
,重新运行后发现已经可以正常了
评论 (0)