第一步:
<dependency>
<groupId>ifly</groupId>
<artifactId>ifly</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>E:/ifly_transcription/libs/lfasr-sdk-client-2.0.0.1005-jar-with-dependencies.jar</systemPath>
</dependency>
红色标注的地方改成你自己的jar所在的地址
第二步:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
因为我是用springboot里面的maven打包,所以只需添加上面第二步红色标注的语句,即可
若有不明白,再@我就好