美文网首页
[maven]本地依赖无法打包

[maven]本地依赖无法打包

作者: 熊本猫 | 来源:发表于2022-04-15 10:02 被阅读0次

    情况

    在项目中的lib目录下引入了三方jar包,打包启动后报错无法找到该jar包

    解决

    在pom.xml中增加 <includeSystemScope>true</includeSystemScope>

    <build>
            <plugins>
                <plugin>
                    <configuration>
                        ...
                        <includeSystemScope>true</includeSystemScope>
                    </configuration>
                </plugin>
    </build>
    

    相关文章

      网友评论

          本文标题:[maven]本地依赖无法打包

          本文链接:https://www.haomeiwen.com/subject/wzpfertx.html