将需要在resources目录下面创建一个用来存放jar包的文件件
在pom.xml中的
配置当前jar包的路径:代码示例如下-导入虹软的sdk包
<dependency>
<groupId>com.arcsoft.face</groupId>
<artifactId>arcsoft-sdk-face</artifactId>
<version>2.2.0.1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/arcsoft-sdk-face-3.0.0.0.jar</systemPath>
</dependency>
在
中添加配置开关-如下:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.5.RELEASE</version>
-----------------------------------------------框起来的部分必须
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
-----------------------------------------------
</plugin>
</plugins>
</build>
右上角maven先进行clear操作-在进行install即可。
评论
登录后才可以进行评论哦!