欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven 进阶--- 引用lib下的本地jar

程序员文章站 2022-07-14 08:54:28
...

一、文件目录结构

Maven 进阶--- 引用lib下的本地jar

二、引用本地jar方法

pom.xml 核心内容

    <dependencies>
        <dependency>
            <groupId>org.xavier</groupId>
            <artifactId>Utils</artifactId>
            <version>1.0</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/src/main/resources/lib/Utils-1.0-jar-with-dependencies.jar</systemPath>
        </dependency>
    </dependencies>

如是操作后,即可将 lib 目录下的 Utils-1.0-jar-with-dependencies.jar 依赖引入当前项目

相关标签: maven jar