美文网首页
加入本地jar包

加入本地jar包

作者: 无我_a50f | 来源:发表于2019-12-06 17:22 被阅读0次

    1. 将jar包copy 进去 模块的目录下

    2. 在模块的pom 文件中加入

    <dependency>
                <groupId>com.pdstars</groupId>
                <artifactId>decodeFile</artifactId>
                <version>1.0-SNAPSHOT</version>
                <scope>system</scope>
                <systemPath>${project.basedir}/lib/decodeFile-1.0-SNAPSHOT.jar</systemPath>
            </dependency>
    
    ##build 里面加入
    <resources>
                <resource>
                    <directory>lib</directory>
                    <targetPath>BOOT-INF/lib/</targetPath>
                    <includes>
                        <include>**/*.jar</include>
                    </includes>
                </resource>
     </resources>
    
    

    3. 在project structrue library 中加入lib 目录

    参考 https://blog.csdn.net/huxiaodong1994/article/details/80702278

    相关文章

      网友评论

          本文标题:加入本地jar包

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