maven引入其他module(jar包)模块出现BOOT-INF目录,导致类不能使用

转载地址:https://blog.csdn.net/zsywangyi/article/details/78319130

解决方案:引入模块pom.xml文件中加上以下内容

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

猜你喜欢

转载自blog.csdn.net/zhangjq520/article/details/85251472
今日推荐