情況
在項(xiàng)目中的lib目錄下引入了三方j(luò)ar包,打包啟動(dòng)后報(bào)錯(cuò)無(wú)法找到該jar包
解決
在pom.xml中增加 <includeSystemScope>true</includeSystemScope>
<build>
<plugins>
<plugin>
<configuration>
...
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</build>