idea springboot项目打包没有第三方引入的jar包

idea springboot项目打包没有第三方引入的jar包

第三方jar包引入

    
        org.apache.commons
        commons-lang3
        3.6
        system
        ${basedir}/src/main/resources/jar/commons-lang3-3.6.jar
    

#启动项目 jar 包调用接口之后,会报错(提示缺少引用的 jar 包)

解决方法

在 pom.xml 文件的 build 节点中添加 includeSystemScope

        
            org.springframework.boot
            spring-boot-maven-plugin
            **
                true
            **
        

再次对项目打包就会包含第三方引用的 jar 包

#转载 https://www.cnblogs.com/lwyang/p/12554097.html

你可能感兴趣的:(java,idea,jar,maven)