美文网首页
Maven项目添加本地jar包依赖

Maven项目添加本地jar包依赖

作者: Mrchen_747c | 来源:发表于2020-04-16 14:56 被阅读0次

    添加依赖
    把本地依赖的jar包放在resources下的lib目录中。

    <dependency>
        <groupId>com.test</groupId>
        <artifactId>test-utils</artifactId>
        <version>1.0.0-SNAPSHOT</version>
        <scope>system</scope>
        <systemPath>${project.basedir}/src/main/resources/lib/test-utils-1.0.0.jar</systemPath>
    </dependency>
    

    修改配置
    Spring Boot插件添加<includeSystemScope>true</includeSystemScope>配置。

    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <includeSystemScope>true</includeSystemScope>
            </configuration>
        </plugin>
    </plugins>
    

    相关文章

      网友评论

          本文标题:Maven项目添加本地jar包依赖

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