美文网首页
SpringBoot中实现mav本地依赖并打包

SpringBoot中实现mav本地依赖并打包

作者: longshuai | 来源:发表于2019-05-27 11:43 被阅读0次

    1、添加本地依赖
    在pom.xml中本地依赖,本地依赖的路径是在resources/lib下的jar包(it-sauronsoftware-jave-1.0.2.jar)。


    <dependency>
    <groupId>it.sauronsoftware</groupId>
    <artifactId>jave</artifactId>
    <version>1.0.2</version>
    <scope>system</scope>
    <systemPath>${project.basedir}/src/main/resources/lib/it-sauronsoftware-jave-1.0.2.jar</systemPath>
    </dependency>

    2、插件化打包配置
    主要是在Class-Path下添加配置文件的路径。
    <manifestEntries>

    <Class-Path>config/ it-sauronsoftware-jave-1.0.2.jar</Class-Path>
    </manifestEntries>


    插件化打包截图.jpg

    这个步骤主要是在打包出来的jar文件中的MANIFEST.MF文件中,添加这个包的Class-Path。不然打包之后会提示找不到这个包。


    Class-Path.jpg

    相关文章

      网友评论

          本文标题:SpringBoot中实现mav本地依赖并打包

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