解决maven scope=system依赖jar包没有打包到启

2024-01-30  本文已影响0人  追风还是少年
        <dependency>
            <groupId>XXX</groupId>
            <artifactId>com.XXX.XXX</artifactId>
            <version>0.0.1</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/libs/XXX-0.0.2-SNAPSHOT.jar</systemPath>
        </dependency>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>

                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                    <mainClass>com.XXX.XXX.XXX</mainClass>
                </configuration>
            </plugin>
        </plugins>
    </build>

上一篇下一篇

猜你喜欢

热点阅读